client: rev 201
This commit is contained in:
@@ -3,39 +3,39 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("nv")
|
||||
@ObfuscatedName("ns")
|
||||
@Implements("Node")
|
||||
public class Node {
|
||||
@ObfuscatedName("fa")
|
||||
@ObfuscatedName("ff")
|
||||
@Export("key")
|
||||
public long key;
|
||||
@ObfuscatedName("fq")
|
||||
@ObfuscatedName("fu")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lnv;"
|
||||
descriptor = "Lns;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Node previous;
|
||||
@ObfuscatedName("fe")
|
||||
@ObfuscatedName("fm")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lnv;"
|
||||
descriptor = "Lns;"
|
||||
)
|
||||
@Export("next")
|
||||
public Node next;
|
||||
|
||||
@ObfuscatedName("ep")
|
||||
@ObfuscatedName("ft")
|
||||
@Export("remove")
|
||||
public void remove() {
|
||||
if (this.next != null) {
|
||||
this.next.previous = this.previous;
|
||||
this.previous.next = this.next;
|
||||
this.previous = null;
|
||||
this.next = null;
|
||||
if (this.next != null) { // L: 9
|
||||
this.next.previous = this.previous; // L: 10
|
||||
this.previous.next = this.next; // L: 11
|
||||
this.previous = null; // L: 12
|
||||
this.next = null; // L: 13
|
||||
}
|
||||
}
|
||||
} // L: 14
|
||||
|
||||
@ObfuscatedName("en")
|
||||
@ObfuscatedName("fl")
|
||||
@Export("hasNext")
|
||||
public boolean hasNext() {
|
||||
return this.next != null;
|
||||
return this.next != null; // L: 17
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user