MCPcopy Index your code
hub / github.com/antlr/codebuff / remove

Method remove

output/java_guava/1.4.17/HashBiMap.java:401–410  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

399 }
400
401 @Override
402 public void remove() {
403 if (modCount != expectedModCount) {
404 throw new ConcurrentModificationException();
405 }
406 checkRemove(toRemove != null);
407 delete(toRemove);
408 expectedModCount = modCount;
409 toRemove = null;
410 }
411
412 abstract T output(BiEntry<K, V> entry);
413 }

Callers

nothing calls this directly

Calls 2

checkRemoveMethod · 0.45
deleteMethod · 0.45

Tested by

no test coverage detected