client: rev 198 (#3014)
* client: rev 198 * client: checkstyle Co-authored-by: therealnull <therealnull@gmail.com>
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("mm")
|
||||
@ObfuscatedName("mw")
|
||||
@Implements("DualNode")
|
||||
public class DualNode extends Node {
|
||||
@ObfuscatedName("cy")
|
||||
@Export("keyDual")
|
||||
public long keyDual;
|
||||
@ObfuscatedName("ci")
|
||||
@ObfuscatedName("cs")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmm;"
|
||||
descriptor = "Lmw;"
|
||||
)
|
||||
@Export("previousDual")
|
||||
public DualNode previousDual;
|
||||
@ObfuscatedName("cs")
|
||||
@ObfuscatedName("cv")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmm;"
|
||||
descriptor = "Lmw;"
|
||||
)
|
||||
@Export("nextDual")
|
||||
public DualNode nextDual;
|
||||
|
||||
@ObfuscatedName("ce")
|
||||
@ObfuscatedName("cr")
|
||||
@Export("removeDual")
|
||||
public void removeDual() {
|
||||
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
|
||||
if (this.nextDual != null) {
|
||||
this.nextDual.previousDual = this.previousDual;
|
||||
this.previousDual.nextDual = this.nextDual;
|
||||
this.previousDual = null;
|
||||
this.nextDual = null;
|
||||
}
|
||||
} // L: 14
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user