(Collection<?> elementsToRetain)
| 138 | } |
| 139 | |
| 140 | @CanIgnoreReturnValue |
| 141 | @Override |
| 142 | public boolean retainAll(Collection<?> elementsToRetain) { |
| 143 | return Multisets.retainAllImpl(this, elementsToRetain); |
| 144 | } |
| 145 | |
| 146 | @Override |
| 147 | public void clear() { |
nothing calls this directly
no test coverage detected