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