shuber 2004/08/20 19:17:11 CEST
Modified files:
core/src/java/org/jahia/services/cache Cache.java
Log:
Removing synchronized from internalRemove method, hopefully this won't cause any
cache corruption problems.
Revision Changes Path
1.6 +1 -1 jahia/core/src/java/org/jahia/services/cache/Cache.java
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/core/src/java/org/jahia/services/cache/Cache.java.diff?r1=1.5&r2=1.6&f=h
Index: Cache.java
===================================================================
RCS file: /cvs/jahia/core/src/java/org/jahia/services/cache/Cache.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Cache.java 29 Jul 2004 17:11:48 -0000 1.5
+++ Cache.java 20 Aug 2004 17:17:10 -0000 1.6
@@ -600,7 +600,7 @@
*
* @param entryKey the cache entry's key to be removed
*/
- private synchronized void internalRemove (Object entryKey) {
+ private void internalRemove (Object entryKey) {
if (entryKey == null)
return;