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

Method remove

output/java_guava/1.4.18/StandardTable.java:330–339  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

328 }
329
330 @Override
331 public V remove(Object key) {
332 Map<C, V> backingRowMap = backingRowMap();
333 if (backingRowMap == null) {
334 return null;
335 }
336 V result = Maps.safeRemove(backingRowMap, key);
337 maintainEmptyInvariant();
338 return result;
339 }
340
341 @Override
342 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