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

Method remove

guava/src/com/google/common/cache/LocalCache.java:4265–4273  ·  guava/src/com/google/common/cache/LocalCache.java::LocalCache.remove
(@Nullable Object key)

Source from the content-addressed store, hash-verified

4263 }
4264
4265 @CanIgnoreReturnValue
4266 @Override
4267 public @Nullable V remove(@Nullable Object key) {
4268 if (key == null) {
4269 return null;
4270 }
4271 int hash = hash(key);
4272 return segmentFor(hash).remove(key, hash);
4273 }
4274
4275 @CanIgnoreReturnValue
4276 @Override

Callers 1

invalidateAllMethod · 0.95

Calls 3

hashMethod · 0.95
segmentForMethod · 0.95
removeMethod · 0.65

Tested by

no test coverage detected