{@inheritDoc} @exception IllegalStateException if this set is currently locked
(Collection<?> c)
| 191 | * @exception IllegalStateException if this set is currently locked |
| 192 | */ |
| 193 | @Override |
| 194 | public boolean removeAll(Collection<?> c) { |
| 195 | checkLocked(); |
| 196 | return super.removeAll(c); |
| 197 | } |
| 198 | |
| 199 | |
| 200 | /** |