avoid reorder problems?

This commit is contained in:
Alexey Kudravtsev
2017-08-16 15:46:51 +03:00
parent 200f59d7cf
commit 0524ae95df
@@ -265,7 +265,7 @@ abstract class ConcurrentRefHashMap<K, V> extends AbstractMap<K, V> implements C
/* Internal class for entry sets */
private class EntrySet extends AbstractSet<Map.Entry<K, V>> {
Set<Map.Entry<KeyReference<K, V>, V>> hashEntrySet = myMap.entrySet();
private final Set<Map.Entry<KeyReference<K, V>, V>> hashEntrySet = myMap.entrySet();
@NotNull
@Override