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

Method remove

output/java_guava/1.4.18/AbstractTable.java:89–94  ·  view source on GitHub ↗
(@Nullable Object rowKey, @Nullable Object columnKey)

Source from the content-addressed store, hash-verified

87 }
88
89 @CanIgnoreReturnValue
90 @Override
91 public V remove(@Nullable Object rowKey, @Nullable Object columnKey) {
92 Map<C, V> row = Maps.safeGet(rowMap(), rowKey);
93 return (row == null) ? null : Maps.safeRemove(row, columnKey);
94 }
95
96 @CanIgnoreReturnValue
97 @Override

Callers

nothing calls this directly

Calls 3

safeGetMethod · 0.95
safeRemoveMethod · 0.95
rowMapMethod · 0.65

Tested by

no test coverage detected