MCPcopy Create free account
hub / github.com/GateNLP/gate-core / remove

Method remove

src/main/java/gate/util/RBTreeMap.java:1051–1062  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1049 } // next
1050
1051 @Override
1052 public void remove() {
1053 if (lastReturned == null)
1054 throw new IllegalStateException();
1055
1056 if (modCount != expectedModCount)
1057 throw new ConcurrentModificationException();
1058
1059 deleteEntry(lastReturned);
1060 expectedModCount++;
1061 lastReturned = null;
1062 } // remove
1063 } //Iterator
1064
1065 /**

Callers 2

removeFieldMethod · 0.95
removeFieldsMethod · 0.95

Calls 1

deleteEntryMethod · 0.80

Tested by

no test coverage detected