{@inheritDoc} @exception IllegalStateException if this map is currently locked
(Map<? extends K,? extends V> map)
| 174 | * @exception IllegalStateException if this map is currently locked |
| 175 | */ |
| 176 | @Override |
| 177 | public void putAll(Map<? extends K,? extends V> map) { |
| 178 | checkLocked(); |
| 179 | delegatedMap.putAll(map); |
| 180 | } |
| 181 | |
| 182 | |
| 183 | /** |