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:10:57 UTC

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

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

URL: http://svn.apache.org/viewcvs?rev=356808&view=rev
Log:
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=356808&r1=356807&r2=356808&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:10:53 2005
@@ -50,7 +50,7 @@
     /**
      * Retrieve an entry from the cache.
      */
-    public Object get(String key) {
+    public synchronized Object get(String key) {
         
         return this.cache.get(key);
     }