You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2005/12/14 18:14:56 UTC

svn commit: r356810 - /incubator/roller/trunk/src/org/roller/presentation/cache/LRUCacheImpl.java

Author: agilliland
Date: Wed Dec 14 09:14:53 2005
New Revision: 356810

URL: http://svn.apache.org/viewcvs?rev=356810&view=rev
Log:
one more synchronization.


Modified:
    incubator/roller/trunk/src/org/roller/presentation/cache/LRUCacheImpl.java

Modified: incubator/roller/trunk/src/org/roller/presentation/cache/LRUCacheImpl.java
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/src/org/roller/presentation/cache/LRUCacheImpl.java?rev=356810&r1=356809&r2=356810&view=diff
==============================================================================
--- incubator/roller/trunk/src/org/roller/presentation/cache/LRUCacheImpl.java (original)
+++ incubator/roller/trunk/src/org/roller/presentation/cache/LRUCacheImpl.java Wed Dec 14 09:14:53 2005
@@ -76,7 +76,7 @@
     }
     
     
-    public Set keySet() {
+    public synchronized Set keySet() {
         return this.cache.keySet();
     }