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