mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 04:33:56 -07:00
SPIGOT-2270: Retain Java 6 compat
This commit is contained in:
@@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
private static final Logger a = LogManager.getLogger();
|
private static final Logger a = LogManager.getLogger();
|
||||||
- private final Set<Long> unloadQueue = Sets.newHashSet();
|
- private final Set<Long> unloadQueue = Sets.newHashSet();
|
||||||
+ public final it.unimi.dsi.fastutil.longs.LongSet unloadQueue = new it.unimi.dsi.fastutil.longs.LongArraySet(); // CraftBukkit Set -> LongSet
|
+ public final Set<Long> unloadQueue = Sets.newHashSet(); // PAIL: private -> public
|
||||||
public final ChunkGenerator chunkGenerator;
|
public final ChunkGenerator chunkGenerator;
|
||||||
private final IChunkLoader chunkLoader;
|
private final IChunkLoader chunkLoader;
|
||||||
public final Long2ObjectMap<Chunk> chunks = new Long2ObjectOpenHashMap(8192);
|
public final Long2ObjectMap<Chunk> chunks = new Long2ObjectOpenHashMap(8192);
|
||||||
|
Reference in New Issue
Block a user