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

Method remove

output/java_guava/1.4.19/StandardTable.java:332–341  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

330 }
331
332 @Override
333 public V remove(Object key) {
334 Map<C, V> backingRowMap = backingRowMap();
335 if (backingRowMap == null) {
336 return null;
337 }
338 V result = Maps.safeRemove(backingRowMap, key);
339 maintainEmptyInvariant();
340 return result;
341 }
342
343 @Override
344 public void clear() {

Callers

nothing calls this directly

Calls 4

backingRowMapMethod · 0.95
safeRemoveMethod · 0.95
removeMethod · 0.65

Tested by

no test coverage detected