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