(Collection<?> relations)
| 597 | } |
| 598 | |
| 599 | @Override |
| 600 | public boolean removeAll(Collection<?> relations) { |
| 601 | boolean modified = false; |
| 602 | |
| 603 | for(Object r : relations) { |
| 604 | if(r instanceof Relation) { |
| 605 | modified |= deleteRelation((Relation)r); |
| 606 | } |
| 607 | } |
| 608 | |
| 609 | return modified; |
| 610 | } |
| 611 | |
| 612 | @Override |
| 613 | public boolean retainAll(Collection<?> relations) { |
nothing calls this directly
no test coverage detected