mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 02:10:30 +01:00
c7f1eed0bf
3beb7729816 a77ed5758a7 52c130fc6d9
23 lines
862 B
Diff
23 lines
862 B
Diff
From 6f633a55450073b31c4a3647f1094a41a2295837 Mon Sep 17 00:00:00 2001
|
|
From: md_5 <md_5@live.com.au>
|
|
Date: Sat, 3 Aug 2013 19:02:59 +1000
|
|
Subject: [PATCH] Plug World Unload Memory Leak
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockRedstoneTorch.java b/src/main/java/net/minecraft/server/BlockRedstoneTorch.java
|
|
index 2cdf7d3..6acfb62 100644
|
|
--- a/src/main/java/net/minecraft/server/BlockRedstoneTorch.java
|
|
+++ b/src/main/java/net/minecraft/server/BlockRedstoneTorch.java
|
|
@@ -10,7 +10,7 @@ import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
|
|
|
|
public class BlockRedstoneTorch extends BlockTorch {
|
|
|
|
- private static Map b = Maps.newHashMap();
|
|
+ private static Map b = new java.util.WeakHashMap(); // Spigot
|
|
private final boolean isOn;
|
|
|
|
private boolean a(World world, BlockPosition blockposition, boolean flag) {
|
|
--
|
|
2.1.0
|
|
|