(Collection c)
| 370 | } |
| 371 | |
| 372 | public boolean removeAll(Collection c) |
| 373 | { |
| 374 | boolean modified = false; |
| 375 | Iterator iter = c.iterator(); |
| 376 | |
| 377 | while (iter.hasNext()) |
| 378 | { |
| 379 | if (removeValue(iter.next()) != null) |
| 380 | { |
| 381 | modified = true; |
| 382 | } |
| 383 | } |
| 384 | return modified; |
| 385 | } |
| 386 | |
| 387 | public void clear() |
| 388 | { |
nothing calls this directly
no test coverage detected