Index: LRUCacheImpl.java =================================================================== --- LRUCacheImpl.java (revision 38357) +++ LRUCacheImpl.java (working copy) @@ -66,7 +66,7 @@ public LRUCacheImpl(int maxSize){ this.maxSize = maxSize; - list = new LinkedHashMap(); + list = new LinkedHashMap((maxSize > 16) ? 16 : maxSize, 0.75F, true); } /**