src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCache.java [60:71]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            return put( key, cacheEntryFactory.create( key ) );
        }
        return v;
    }

    protected boolean shouldCreate( CacheEntryFactory<K, V> cacheEntryFactory, V v )
        throws CacheException
    {
        return cacheEntryFactory != null && v == null;
    }

    public V put( K key, V value )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/commons/ognl/internal/HashMapCache.java [71:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                return put( key, cacheEntryFactory.create( key ) );
            }
        }
        return v;
    }

    protected boolean shouldCreate( CacheEntryFactory<K, V> cacheEntryFactory, V v )
        throws CacheException
    {
        return cacheEntryFactory != null && v == null;
    }

    public V put( K key, V value )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



