(Object key)
| 430 | /// @return the value of the mapping with the specified key, or `null` |
| 431 | /// if no mapping for the specified key is found. |
| 432 | @Override |
| 433 | public V get(Object key) { |
| 434 | Entry<K, V> m = getEntry(key); |
| 435 | if (m != null) { |
| 436 | return m.value; |
| 437 | } |
| 438 | return null; |
| 439 | } |
| 440 | |
| 441 | final Entry<K, V> getEntry(Object key) { |
| 442 | Entry<K, V> m; |
no test coverage detected