Removing ChunkletUnloader and dependents, since they are no longer necessary.

This commit is contained in:
Glitchfinder
2013-01-18 15:39:02 -08:00
parent 00f24fd5bd
commit b424ecfd3e
4 changed files with 1 additions and 96 deletions

View File

@ -15,8 +15,6 @@ import org.bukkit.Bukkit;
import org.bukkit.World;
import org.bukkit.block.Block;
import com.gmail.nossr50.runnables.ChunkletUnloader;
public class HashChunkletManager implements ChunkletManager {
public HashMap<String, ChunkletStore> store = new HashMap<String, ChunkletStore>();
@ -99,7 +97,7 @@ public class HashChunkletManager implements ChunkletManager {
@Override
public void chunkUnloaded(int cx, int cz, World world) {
ChunkletUnloader.addToList(cx, cx, world);
unloadChunk(cx, cx, world);
}
@Override