mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-12 10:45:50 -07:00
Fix HashTreeSet which went missing in the previous commit.
By: md_5 <git@md-5.net>
This commit is contained in:
@@ -26,7 +26,7 @@
|
|||||||
- private final Set<NextTickListEntry> L = Sets.newHashSet();
|
- private final Set<NextTickListEntry> L = Sets.newHashSet();
|
||||||
- private final TreeSet<NextTickListEntry> M = new TreeSet();
|
- private final TreeSet<NextTickListEntry> M = new TreeSet();
|
||||||
+ // private final Set<NextTickListEntry> L = Sets.newHashSet(); // PAIL: Rename nextTickListHash
|
+ // private final Set<NextTickListEntry> L = Sets.newHashSet(); // PAIL: Rename nextTickListHash
|
||||||
+ private final TreeSet<NextTickListEntry> M = new TreeSet(); // CraftBukkit - HashTreeSet // PAIL: Rename nextTickList
|
+ private final HashTreeSet<NextTickListEntry> M = new HashTreeSet<NextTickListEntry>(); // CraftBukkit - HashTreeSet // PAIL: Rename nextTickList
|
||||||
private final Map<UUID, Entity> entitiesByUUID = Maps.newHashMap();
|
private final Map<UUID, Entity> entitiesByUUID = Maps.newHashMap();
|
||||||
public ChunkProviderServer chunkProviderServer;
|
public ChunkProviderServer chunkProviderServer;
|
||||||
public boolean savingDisabled;
|
public boolean savingDisabled;
|
||||||
|
Reference in New Issue
Block a user