client: revvy boi 202

This commit is contained in:
JumpIfZero
2021-12-09 15:12:57 +02:00
parent 5d758a3394
commit 9f716fea3a
496 changed files with 62975 additions and 58430 deletions

View File

@@ -3,26 +3,26 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("ns")
@ObfuscatedName("nw")
@Implements("Node")
public class Node {
@ObfuscatedName("ff")
@ObfuscatedName("fc")
@Export("key")
public long key;
@ObfuscatedName("fu")
@ObfuscatedName("fi")
@ObfuscatedSignature(
descriptor = "Lns;"
descriptor = "Lnw;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("fm")
@ObfuscatedName("fs")
@ObfuscatedSignature(
descriptor = "Lns;"
descriptor = "Lnw;"
)
@Export("next")
public Node next;
@ObfuscatedName("ft")
@ObfuscatedName("fe")
@Export("remove")
public void remove() {
if (this.next != null) { // L: 9
@@ -33,7 +33,7 @@ public class Node {
}
} // L: 14
@ObfuscatedName("fl")
@ObfuscatedName("fu")
@Export("hasNext")
public boolean hasNext() {
return this.next != null; // L: 17