MCPcopy
hub / github.com/google/guava / remove

Method remove

guava/src/com/google/common/cache/LocalCache.java:4648–4656  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

4646 }
4647
4648 @Override
4649 public boolean remove(Object o) {
4650 if (!(o instanceof Entry)) {
4651 return false;
4652 }
4653 Entry<?, ?> e = (Entry<?, ?>) o;
4654 Object key = e.getKey();
4655 return key != null && LocalCache.this.remove(key, e.getValue());
4656 }
4657 }
4658
4659 // Serialization Support

Callers

nothing calls this directly

Calls 3

getKeyMethod · 0.65
removeMethod · 0.65
getValueMethod · 0.65

Tested by

no test coverage detected