project: rev 200
This commit is contained in:
@@ -3,26 +3,26 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("nr")
|
||||
@ObfuscatedName("nv")
|
||||
@Implements("Node")
|
||||
public class Node {
|
||||
@ObfuscatedName("fy")
|
||||
@ObfuscatedName("fa")
|
||||
@Export("key")
|
||||
public long key;
|
||||
@ObfuscatedName("fx")
|
||||
@ObfuscatedName("fq")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lnr;"
|
||||
descriptor = "Lnv;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Node previous;
|
||||
@ObfuscatedName("fa")
|
||||
@ObfuscatedName("fe")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lnr;"
|
||||
descriptor = "Lnv;"
|
||||
)
|
||||
@Export("next")
|
||||
public Node next;
|
||||
|
||||
@ObfuscatedName("fe")
|
||||
@ObfuscatedName("ep")
|
||||
@Export("remove")
|
||||
public void remove() {
|
||||
if (this.next != null) {
|
||||
@@ -33,7 +33,7 @@ public class Node {
|
||||
}
|
||||
}
|
||||
|
||||
@ObfuscatedName("ff")
|
||||
@ObfuscatedName("en")
|
||||
@Export("hasNext")
|
||||
public boolean hasNext() {
|
||||
return this.next != null;
|
||||
|
||||
Reference in New Issue
Block a user