mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-28 10:53:51 -07:00
Fixed memory leak Chunk Compression handling. Thanks Zeerix!
This commit is contained in:
@@ -98,7 +98,12 @@ public final class ChunkCompressionThread implements Runnable {
|
||||
private void addToPlayerQueueSize(EntityPlayer player, int amount) {
|
||||
synchronized (queueSizePerPlayer) {
|
||||
Integer count = queueSizePerPlayer.get(player);
|
||||
queueSizePerPlayer.put(player, (count == null ? 0 : count) + amount);
|
||||
amount += (count == null) ? 0 : count;
|
||||
if (amount == 0) {
|
||||
queueSizePerPlayer.remove(player);
|
||||
} else {
|
||||
queueSizePerPlayer.put(player, amount);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user