(Object o)
| 640 | } |
| 641 | |
| 642 | @Override |
| 643 | public boolean remove(Object o) { |
| 644 | if ( hasProperty(null, o.toString())) { |
| 645 | delete( null, o.toString(), false ); |
| 646 | return true; |
| 647 | } |
| 648 | return false; |
| 649 | } |
| 650 | |
| 651 | @Override |
| 652 | public boolean containsAll(Collection<?> c) { |
nothing calls this directly
no test coverage detected