src/main/java/org/apache/commons/ognl/internal/HashMapCache.java [39:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.cacheEntryFactory = cacheEntryFactory;
    }

    public void clear()
    {
        synchronized ( cache )
        {
            cache.clear();
        }
    }

    public int getSize()
    {
        synchronized ( cache )
        {
            return cache.size();
        }
    }

    public V get( K key )
        throws CacheException
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCache.java [52:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.cacheEntryFactory = cacheEntryFactory;
    }

    public void clear()
    {
        synchronized ( cache )
        {
            cache.clear();
        }
    }

    public int getSize()
    {
        synchronized ( cache )
        {
            return cache.size();
        }
    }


    public V get( K key )
        throws CacheException
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



