()
| 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 | } |
nothing calls this directly
no test coverage detected