{@inheritDoc} Returns an unmodifiable Collection view of the values contained in this map if it is locked.
()
| 251 | * locked. |
| 252 | */ |
| 253 | @Override |
| 254 | public Collection<V> values() { |
| 255 | if (locked) { |
| 256 | return unmodifiableDelegatedMap.values(); |
| 257 | } |
| 258 | |
| 259 | return delegatedMap.values(); |
| 260 | } |
| 261 | |
| 262 | |
| 263 | /** |
no outgoing calls