Author: mcucchiara
Date: Thu Oct 20 15:48:55 2011
New Revision: 1186862
URL: http://svn.apache.org/viewvc?rev=1186862&view=rev
Log:
make uniform the name convention of the cache
Modified:
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java
Modified:
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java
URL:
http://svn.apache.org/viewvc/commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java?rev=1186862&r1=1186861&r2=1186862&view=diff
==============================================================================
---
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java
(original)
+++
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java
Thu Oct 20 15:48:55 2011
@@ -39,6 +39,6 @@ public class CacheFactory
public static <V> ClassCache<V> createClassCache(
ClassCacheEntryFactory<V> entryFactory )
{
- return new ConcurrentClassCache<V>(entryFactory );
+ return new ConcurrentHashMapClassCache<V>(entryFactory );
}
}