client: rev 198 (#3014)

* client: rev 198

* client: checkstyle

Co-authored-by: therealnull <therealnull@gmail.com>
This commit is contained in:
Tyler Bochard
2021-07-28 07:24:38 -04:00
committed by GitHub
parent c2af17f765
commit 56ae122b89
466 changed files with 65937 additions and 65851 deletions

View File

@@ -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
}
}