()
| 709 | } |
| 710 | |
| 711 | @Override |
| 712 | public void clear() { |
| 713 | Iterator<K> i = keyIterator(); |
| 714 | while(i.hasNext()){ |
| 715 | i.next(); |
| 716 | i.remove(); |
| 717 | } |
| 718 | } |
| 719 | |
| 720 | |
| 721 | /* ---------------- ConcurrentMap API methods -------------- */ |
nothing calls this directly
no test coverage detected