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