Merge remote-tracking branch 'upstream/master' into master
Nice insider info btw, be nice if you shared it, so-called "open source" client.
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("md")
|
||||
@ObfuscatedName("mw")
|
||||
@Implements("Node")
|
||||
public class Node {
|
||||
@ObfuscatedName("fs")
|
||||
@ObfuscatedName("ff")
|
||||
@Export("key")
|
||||
public long key;
|
||||
@ObfuscatedName("ft")
|
||||
@ObfuscatedName("fw")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmd;"
|
||||
descriptor = "Lmw;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Node previous;
|
||||
@ObfuscatedName("fy")
|
||||
@ObfuscatedName("fj")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmd;"
|
||||
descriptor = "Lmw;"
|
||||
)
|
||||
@Export("next")
|
||||
public Node next;
|
||||
|
||||
@ObfuscatedName("ef")
|
||||
@ObfuscatedName("eq")
|
||||
@Export("remove")
|
||||
public void remove() {
|
||||
if (this.next != null) { // L: 9
|
||||
@@ -33,7 +33,7 @@ public class Node {
|
||||
}
|
||||
} // L: 14
|
||||
|
||||
@ObfuscatedName("eh")
|
||||
@ObfuscatedName("fz")
|
||||
@Export("hasNext")
|
||||
public boolean hasNext() {
|
||||
return this.next != null; // L: 17
|
||||
|
||||
Reference in New Issue
Block a user