Maps the specified key to the specified value. @param key the key. @param value the value. @return the value of any previous mapping with the specified key or null if there was no such mapping.
(K key, V value)
| 522 | * {@code null} if there was no such mapping. |
| 523 | */ |
| 524 | @Override |
| 525 | public V put(K key, V value) { |
| 526 | return putImpl(key, value); |
| 527 | } |
| 528 | |
| 529 | V putImpl(K key, V value) { |
| 530 | Entry<K,V> entry; |