()
| 1171 | } |
| 1172 | |
| 1173 | @Override |
| 1174 | public void clear() { |
| 1175 | Iterator<K> i = keyIterator(); |
| 1176 | while(i.hasNext()){ |
| 1177 | i.next(); |
| 1178 | i.remove(); |
| 1179 | } |
| 1180 | } |
| 1181 | |
| 1182 | |
| 1183 | /* ---------------- ConcurrentMap API methods -------------- */ |
nothing calls this directly
no test coverage detected