Removes an element from the cache according to the specified key @param key The key for the element, used to reference it in the hastables and LRU linked list @return The value of the removed element specified by the key
(Object key)
| 242 | * @return The value of the removed element specified by the key |
| 243 | */ |
| 244 | public void remove(Object key) { |
| 245 | removeObject(key); |
| 246 | } |
| 247 | |
| 248 | private void removeObject(Object key) { |
| 249 | if (key == null) { |
nothing calls this directly
no test coverage detected