{@inheritDoc} @exception IllegalStateException if this map is currently locked
(K key, V value)
| 162 | * @exception IllegalStateException if this map is currently locked |
| 163 | */ |
| 164 | @Override |
| 165 | public V put(K key, V value) { |
| 166 | checkLocked(); |
| 167 | return delegatedMap.put(key, value); |
| 168 | } |
| 169 | |
| 170 | |
| 171 | /** |
no test coverage detected