You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2006/08/30 21:47:19 UTC

svn commit: r438602 - in /incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/cache: CacheFactory.java CachePolicy.java

Author: jmsnell
Date: Wed Aug 30 12:47:19 2006
New Revision: 438602

URL: http://svn.apache.org/viewvc?rev=438602&view=rev
Log:
some initial refactoring of the server cache code.  the goal is eventually to get
the client and server sharing the same interfaces

Removed:
    incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/cache/CachePolicy.java
Modified:
    incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/cache/CacheFactory.java

Modified: incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/cache/CacheFactory.java
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/cache/CacheFactory.java?rev=438602&r1=438601&r2=438602&view=diff
==============================================================================
--- incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/cache/CacheFactory.java (original)
+++ incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/cache/CacheFactory.java Wed Aug 30 12:47:19 2006
@@ -22,7 +22,5 @@
   public static final CacheFactory INSTANCE = null;
   
   Cache newCache();
-
-  Cache newCache(CachePolicy defaultPolicy);
   
 }