You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ol...@apache.org on 2013/02/18 21:29:35 UTC

svn commit: r1447466 - /archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-ehcache/src/main/java/org/apache/archiva/redback/components/cache/ehcache/EhcacheCache.java

Author: olamy
Date: Mon Feb 18 20:29:35 2013
New Revision: 1447466

URL: http://svn.apache.org/r1447466
Log:
remove non needed field

Modified:
    archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-ehcache/src/main/java/org/apache/archiva/redback/components/cache/ehcache/EhcacheCache.java

Modified: archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-ehcache/src/main/java/org/apache/archiva/redback/components/cache/ehcache/EhcacheCache.java
URL: http://svn.apache.org/viewvc/archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-ehcache/src/main/java/org/apache/archiva/redback/components/cache/ehcache/EhcacheCache.java?rev=1447466&r1=1447465&r2=1447466&view=diff
==============================================================================
--- archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-ehcache/src/main/java/org/apache/archiva/redback/components/cache/ehcache/EhcacheCache.java (original)
+++ archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-ehcache/src/main/java/org/apache/archiva/redback/components/cache/ehcache/EhcacheCache.java Mon Feb 18 20:29:35 2013
@@ -164,11 +164,6 @@ public class EhcacheCache<V, T>
      */
     private int maxElementsOnDisk;
 
-    /**
-     * @since 2.1
-     */
-    private boolean synchronousWrites = false;
-
     private boolean statisticsEnabled = true;
 
     private CacheManager cacheManager = null;//CacheManager.getInstance();
@@ -508,14 +503,4 @@ public class EhcacheCache<V, T>
             this.ehcache.getCacheConfiguration().maxEntriesLocalDisk( this.maxElementsOnDisk );
         }
     }
-
-    public boolean isSynchronousWrites()
-    {
-        return synchronousWrites;
-    }
-
-    public void setSynchronousWrites( boolean synchronousWrites )
-    {
-        this.synchronousWrites = synchronousWrites;
-    }
 }