{@inheritDoc} @exception IllegalStateException if this set is currently locked
(Object o)
| 179 | * @exception IllegalStateException if this set is currently locked |
| 180 | */ |
| 181 | @Override |
| 182 | public boolean remove(Object o) { |
| 183 | checkLocked(); |
| 184 | return super.remove(o); |
| 185 | } |
| 186 | |
| 187 | |
| 188 | /** |
nothing calls this directly
no test coverage detected