(Collection<?> c)
| 3974 | } |
| 3975 | |
| 3976 | @Override |
| 3977 | public boolean removeAll(Collection<?> c) { |
| 3978 | try { |
| 3979 | return super.removeAll(checkNotNull(c)); |
| 3980 | } catch (UnsupportedOperationException e) { |
| 3981 | // if the iterators don't support remove |
| 3982 | return Sets.removeAllImpl(this, c.iterator()); |
| 3983 | } |
| 3984 | } |
| 3985 | |
| 3986 | @Override |
| 3987 | public boolean retainAll(Collection<?> c) { |
nothing calls this directly
no test coverage detected