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

Method remove

corpus/java/training/guava/collect/HashBiMap.java:416–425  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

414 }
415
416 @Override
417 public void remove() {
418 if (modCount != expectedModCount) {
419 throw new ConcurrentModificationException();
420 }
421 checkRemove(toRemove != null);
422 delete(toRemove);
423 expectedModCount = modCount;
424 toRemove = null;
425 }
426
427 abstract T output(BiEntry<K, V> entry);
428 }

Callers

nothing calls this directly

Calls 2

checkRemoveMethod · 0.45
deleteMethod · 0.45

Tested by

no test coverage detected