MCPcopy Create free account
hub / github.com/apache/poi / removeAll

Method removeAll

src/java/org/apache/poi/util/BinaryTree.java:372–385  ·  view source on GitHub ↗
(Collection c)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 4

hasNextMethod · 0.95
removeValueMethod · 0.95
nextMethod · 0.95
iteratorMethod · 0.65

Tested by

no test coverage detected