(Object key)
| 530 | } |
| 531 | |
| 532 | @Override |
| 533 | public boolean remove(Object key) { |
| 534 | Entry<K, V> entry = HashMap.this.removeEntry(key); |
| 535 | return entry != null; |
| 536 | } |
| 537 | |
| 538 | @Override |
| 539 | public Iterator<K> iterator() { |
nothing calls this directly
no test coverage detected