MCPcopy Create free account
hub / github.com/antlr/codebuff / remove

Method remove

output/java_guava/1.4.19/LocalCache.java:4244–4252  ·  view source on GitHub ↗
(@Nullable Object key)

Source from the content-addressed store, hash-verified

4242 }
4243
4244 @Override
4245 public V remove(@Nullable Object key) {
4246 if (key == null) {
4247 return null;
4248 }
4249
4250 int hash = hash(key);
4251 return segmentFor(hash).remove(key, hash);
4252 }
4253
4254 @Override
4255 public boolean remove(@Nullable Object key, @Nullable Object value) {

Callers 1

invalidateAllMethod · 0.95

Calls 3

hashMethod · 0.95
segmentForMethod · 0.95
removeMethod · 0.65

Tested by

no test coverage detected