Performance update to remove several very high counts of temp object creation
This commit is contained in:
8
src/main/java/org/bukkit/craftbukkit/util/EntryBase.java
Normal file
8
src/main/java/org/bukkit/craftbukkit/util/EntryBase.java
Normal file
@@ -0,0 +1,8 @@
|
||||
package org.bukkit.craftbukkit.util;
|
||||
|
||||
public class EntryBase {
|
||||
protected long key;
|
||||
public EntryBase(long key) {
|
||||
this.key = key;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user