1
0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-01 17:35:54 +02:00

synchronize hashmap lookups

This commit is contained in:
Tahg 2011-02-23 22:52:14 -05:00
parent edb0debd16
commit 280880d163

View File

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