(Collection<?> c)
| 73 | |
| 74 | abstract static class ImprovedAbstractSet<E> extends AbstractSet<E> { |
| 75 | @Override |
| 76 | public boolean removeAll(Collection<?> c) { |
| 77 | return removeAllImpl(this, c); |
| 78 | } |
| 79 | |
| 80 | @Override |
| 81 | public boolean retainAll(Collection<?> c) { |
nothing calls this directly
no test coverage detected