(ReferenceEntry<K, V> entry)
| 1856 | } |
| 1857 | |
| 1858 | void reclaimKey(ReferenceEntry<K, V> entry) { |
| 1859 | int hash = entry.getHash(); |
| 1860 | segmentFor(hash).reclaimKey(entry, hash); |
| 1861 | } |
| 1862 | |
| 1863 | /** |
| 1864 | * This method is a convenience for testing. Code should call {@link Segment#getLiveValue} |
no test coverage detected