(Collection<?> c)
| 3908 | } |
| 3909 | |
| 3910 | @Override |
| 3911 | public boolean removeAll(Collection<?> c) { |
| 3912 | try { |
| 3913 | return super.removeAll(checkNotNull(c)); |
| 3914 | } catch (UnsupportedOperationException e) { |
| 3915 | // if the iterators don't support remove |
| 3916 | return Sets.removeAllImpl(this, c.iterator()); |
| 3917 | } |
| 3918 | } |
| 3919 | |
| 3920 | @Override |
| 3921 | public boolean retainAll(Collection<?> c) { |
nothing calls this directly
no test coverage detected