{@inheritDoc} Returns an unmodifiable Set view of the mappings contained in this map if it is locked.
()
| 266 | * Returns an <strong>unmodifiable</strong> {@link Set} view of the mappings contained in this map if it is locked. |
| 267 | */ |
| 268 | @Override |
| 269 | public Set<Map.Entry<K,V>> entrySet() { |
| 270 | if (locked) { |
| 271 | return unmodifiableDelegatedMap.entrySet(); |
| 272 | } |
| 273 | |
| 274 | return delegatedMap.entrySet(); |
| 275 | } |
| 276 | } |
no outgoing calls