project: rev 192

This commit is contained in:
ThatGamerBlue
2020-10-21 14:30:57 +02:00
parent 47583ab7c6
commit 88599e5dd3
355 changed files with 53400 additions and 49134 deletions

View File

@@ -1,22 +1,29 @@
import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("gw")
@ObfuscatedName("gn")
@Implements("Node")
public class Node {
@ObfuscatedName("cp")
@ObfuscatedName("cm")
@Export("key")
public long key;
@ObfuscatedName("ch")
@ObfuscatedName("cb")
@ObfuscatedSignature(
descriptor = "Lgw;"
descriptor = "Lgn;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("cs")
@ObfuscatedName("ct")
@ObfuscatedSignature(
descriptor = "Lgw;"
descriptor = "Lgn;"
)
@Export("next")
public Node next;
@ObfuscatedName("fa")
@ObfuscatedName("fm")
@Export("remove")
public void remove() {
if (this.next != null) { // L: 9
this.next.previous = this.previous; // L: 10
@@ -26,7 +33,8 @@ public class Node {
}
} // L: 14
@ObfuscatedName("fh")
@ObfuscatedName("fg")
@Export("hasNext")
public boolean hasNext() {
return this.next != null; // L: 17
}