chore: rev 194

This commit is contained in:
zeruth
2021-02-24 08:08:39 -05:00
parent 11dd1cdb41
commit e1df0f6f7c
352 changed files with 83792 additions and 85533 deletions

View File

@@ -6,30 +6,30 @@ import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("gj")
@Implements("DualNode")
public class DualNode extends Node {
@ObfuscatedName("cl")
@Export("keyDual")
public long keyDual;
@ObfuscatedName("cw")
@ObfuscatedSignature(
descriptor = "Lgj;"
)
@Export("previousDual")
public DualNode previousDual;
@ObfuscatedName("cp")
@ObfuscatedSignature(
descriptor = "Lgj;"
)
@Export("nextDual")
public DualNode nextDual;
@ObfuscatedName("cu")
@Export("keyDual")
public long keyDual;
@ObfuscatedName("ci")
@ObfuscatedSignature(
descriptor = "Lgj;"
)
@Export("previousDual")
public DualNode previousDual;
@ObfuscatedName("cy")
@ObfuscatedSignature(
descriptor = "Lgj;"
)
@Export("nextDual")
public DualNode nextDual;
@ObfuscatedName("ck")
@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
}
} // L: 14
@ObfuscatedName("cm")
@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;
}
}
}