(ReferenceEntry<K, V> entry)
| 1925 | } |
| 1926 | |
| 1927 | void reclaimKey(ReferenceEntry<K, V> entry) { |
| 1928 | int hash = entry.getHash(); |
| 1929 | segmentFor(hash).reclaimKey(entry, hash); |
| 1930 | } |
| 1931 | |
| 1932 | /** |
| 1933 | * This method is a convenience for testing. Code should call {@link Segment#getLiveValue} |
no test coverage detected