(int maxSize)
| 20 | private CacheEvictionCallback evCb = null; |
| 21 | |
| 22 | public LruMap(int maxSize) { |
| 23 | super(maxSize + 1, 1.0f, true); |
| 24 | this.maxSize = maxSize; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Creates an LRU map that will call back before data is removed from the map. |
nothing calls this directly
no outgoing calls
no test coverage detected