3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

synchronize hashmap lookups

Dieser Commit ist enthalten in:
Tahg 2011-02-23 22:52:14 -05:00
Ursprung edb0debd16
Commit 280880d163

Datei anzeigen

@ -40,8 +40,10 @@ public class LongHashtable<V> extends LongHash
}
public V get(long key) {
synchronized(this) {
return containsKey(key) ? (V) cache.value : null;
}
}
public boolean containsKey(long key) {
if (cache != null && cache.key == key)