{@inheritDoc} @exception IllegalStateException if this set is currently locked
(T o)
| 141 | * @exception IllegalStateException if this set is currently locked |
| 142 | */ |
| 143 | @Override |
| 144 | public boolean add(T o) { |
| 145 | checkLocked(); |
| 146 | return super.add(o); |
| 147 | } |
| 148 | |
| 149 | |
| 150 | /** |
no test coverage detected