(K key, int hash, @Nullable ReferenceEntry<K, V> next)
| 1999 | } |
| 2000 | |
| 2001 | @GuardedBy("this") |
| 2002 | ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { |
| 2003 | return map.entryFactory.newEntry(this, checkNotNull(key), hash, next); |
| 2004 | } |
| 2005 | |
| 2006 | /** |
| 2007 | * Copies {@code original} into a new entry chained to {@code newNext}. Returns the new entry, |
no test coverage detected