MCPcopy Create free account
hub / github.com/banq/jdonframework / remove

Method remove

src/main/java/com/jdon/cache/UtilCache.java:244–246  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 1

removeObjectMethod · 0.95

Tested by

no test coverage detected