This commit is contained in:
Lucwousin
2019-10-31 16:57:45 +01:00
parent 8b7eaf23f1
commit e7a1983158
344 changed files with 41280 additions and 41078 deletions

View File

@@ -3,26 +3,26 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("fx")
@ObfuscatedName("fd")
@Implements("Node")
public class Node {
@ObfuscatedName("cl")
@ObfuscatedName("cp")
@Export("key")
public long key;
@ObfuscatedName("cw")
@ObfuscatedName("cs")
@ObfuscatedSignature(
signature = "Lfx;"
signature = "Lfd;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("cq")
@ObfuscatedName("ck")
@ObfuscatedSignature(
signature = "Lfx;"
signature = "Lfd;"
)
@Export("next")
public Node next;
@ObfuscatedName("fu")
@ObfuscatedName("fv")
@Export("remove")
public void remove() {
if (this.next != null) {
@@ -33,7 +33,7 @@ public class Node {
}
}
@ObfuscatedName("fa")
@ObfuscatedName("fk")
@Export("hasNext")
public boolean hasNext() {
return this.next != null;