{@inheritDoc} @exception IllegalStateException if this set is currently locked
(Collection<?> c)
| 203 | * @exception IllegalStateException if this set is currently locked |
| 204 | */ |
| 205 | @Override |
| 206 | public boolean retainAll(Collection<?> c) { |
| 207 | checkLocked(); |
| 208 | return super.retainAll(c); |
| 209 | } |
| 210 | |
| 211 | |
| 212 | /** |