This commit is contained in:
ThatGamerBlue
2021-05-19 12:59:30 +01:00
parent 7eb96d606a
commit 29a3d313a4
438 changed files with 51991 additions and 51730 deletions

View File

@@ -3,26 +3,26 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("mh")
@ObfuscatedName("md")
@Implements("Node")
public class Node {
@ObfuscatedName("fk")
@ObfuscatedName("fs")
@Export("key")
public long key;
@ObfuscatedName("fs")
@ObfuscatedName("ft")
@ObfuscatedSignature(
descriptor = "Lmh;"
descriptor = "Lmd;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("fz")
@ObfuscatedName("fy")
@ObfuscatedSignature(
descriptor = "Lmh;"
descriptor = "Lmd;"
)
@Export("next")
public Node next;
@ObfuscatedName("ex")
@ObfuscatedName("ef")
@Export("remove")
public void remove() {
if (this.next != null) { // L: 9
@@ -33,7 +33,7 @@ public class Node {
}
} // L: 14
@ObfuscatedName("ed")
@ObfuscatedName("eh")
@Export("hasNext")
public boolean hasNext() {
return this.next != null; // L: 17