Author: mcucchiara Date: Sat Oct 22 01:38:37 2011 New Revision: 1187631 URL: http://svn.apache.org/viewvc?rev=1187631&view=rev Log: Better interface where possible
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=1187631&r1=1187630&r2=1187631&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 Sat Oct 22 01:38:37 2011 @@ -191,7 +191,7 @@ public class OgnlRuntime static final Map<String, Class<?>> _primitiveTypes = new HashMap<String, Class<?>>( 101 ); - static final HashMap<Class<?>, Object> _primitiveDefaults = new HashMap<Class<?>, Object>( 20 ); + static final Map<Class<?>, Object> _primitiveDefaults = new HashMap<Class<?>, Object>( 20 ); static final Cache<Method, Class<?>[]> _methodParameterTypesCache = cacheFactory.createCache( new CacheEntryFactory<Method, Class<?>[]>( )