(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newNext)
| 1829 | */ |
| 1830 | // Guarded By Segment.this |
| 1831 | @VisibleForTesting |
| 1832 | ReferenceEntry<K, V> copyEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newNext) { |
| 1833 | int hash = original.getHash(); |
| 1834 | return segmentFor(hash).copyEntry(original, newNext); |
| 1835 | } |
| 1836 | |
| 1837 | /** |
| 1838 | * This method is a convenience for testing. Code should call {@link Segment#setValue} instead. |
no test coverage detected