rsclient: rev 191
This commit is contained in:
@@ -3,33 +3,33 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("gf")
|
||||
@ObfuscatedName("gs")
|
||||
@Implements("DualNode")
|
||||
public class DualNode extends Node {
|
||||
@ObfuscatedName("cq")
|
||||
@ObfuscatedName("cj")
|
||||
@Export("keyDual")
|
||||
public long keyDual;
|
||||
@ObfuscatedName("co")
|
||||
@ObfuscatedName("cd")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lgf;"
|
||||
descriptor = "Lgs;"
|
||||
)
|
||||
@Export("previousDual")
|
||||
public DualNode previousDual;
|
||||
@ObfuscatedName("ca")
|
||||
@ObfuscatedName("cx")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lgf;"
|
||||
descriptor = "Lgs;"
|
||||
)
|
||||
@Export("nextDual")
|
||||
public DualNode nextDual;
|
||||
|
||||
@ObfuscatedName("ci")
|
||||
@ObfuscatedName("dq")
|
||||
@Export("removeDual")
|
||||
public void removeDual() {
|
||||
if (this.nextDual != null) {
|
||||
this.nextDual.previousDual = this.previousDual;
|
||||
this.previousDual.nextDual = this.nextDual;
|
||||
this.previousDual = null;
|
||||
this.nextDual = null;
|
||||
if (this.nextDual != null) { // L: 9
|
||||
this.nextDual.previousDual = this.previousDual; // L: 10
|
||||
this.previousDual.nextDual = this.nextDual; // L: 11
|
||||
this.previousDual = null; // L: 12
|
||||
this.nextDual = null; // L: 13
|
||||
}
|
||||
}
|
||||
} // L: 14
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user