(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newNext)
| 1896 | // Guarded By Segment.this |
| 1897 | |
| 1898 | @VisibleForTesting |
| 1899 | ReferenceEntry<K, V> copyEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newNext) { |
| 1900 | int hash = original.getHash(); |
| 1901 | return segmentFor(hash).copyEntry(original, newNext); |
| 1902 | } |
| 1903 | |
| 1904 | /** |
| 1905 | * This method is a convenience for testing. Code should call {@link Segment#setValue} instead. |
no test coverage detected