Author: mcucchiara Date: Sun Oct 16 21:37:56 2011 New Revision: 1184939 URL: http://svn.apache.org/viewvc?rev=1184939&view=rev Log: Added generic type
Modified: commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/OgnlRuntime.java Modified: commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/OgnlRuntime.java URL: http://svn.apache.org/viewvc/commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/OgnlRuntime.java?rev=1184939&r1=1184938&r2=1184939&view=diff ============================================================================== --- commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/OgnlRuntime.java (original) +++ commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/OgnlRuntime.java Sun Oct 16 21:37:56 2011 @@ -185,7 +185,7 @@ public class OgnlRuntime static final Map<String, Class<?>> _primitiveTypes = new HashMap<String, Class<?>>( 101 ); - static final ClassCache _primitiveDefaults = new ConcurrentClassCache( ); + static final ClassCache<Object> _primitiveDefaults = new ConcurrentClassCache<Object>( ); static final Cache<Method, Class<?>[]> _methodParameterTypesCache = new ConcurrentHashMapCache<Method, Class<?>[]>( new CacheEntryFactory<Method, Class<?>[]>( ) {