{@inheritDoc} @exception IllegalStateException if this set is currently locked
(Collection<? extends T> c)
| 153 | * @exception IllegalStateException if this set is currently locked |
| 154 | */ |
| 155 | @Override |
| 156 | public boolean addAll(Collection<? extends T> c) { |
| 157 | checkLocked(); |
| 158 | return super.addAll(c); |
| 159 | } |
| 160 | |
| 161 | |
| 162 | /** |
nothing calls this directly
no test coverage detected