client: rev 201

This commit is contained in:
Justin
2021-11-03 22:50:34 +11:00
parent af21d0e050
commit bcc8072751
425 changed files with 65165 additions and 65696 deletions

View File

@@ -3,30 +3,30 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("mq")
@ObfuscatedName("mk")
@Implements("Link")
public class Link {
@ObfuscatedName("j")
@ObfuscatedName("a")
@ObfuscatedSignature(
descriptor = "Lmq;"
descriptor = "Lmk;"
)
@Export("previous")
public Link previous;
@ObfuscatedName("m")
@ObfuscatedName("o")
@ObfuscatedSignature(
descriptor = "Lmq;"
descriptor = "Lmk;"
)
@Export("next")
public Link next;
@ObfuscatedName("l")
@ObfuscatedName("i")
@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: 8
this.next.previous = this.previous; // L: 9
this.previous.next = this.next; // L: 10
this.previous = null; // L: 11
this.next = null; // L: 12
}
}
} // L: 13
}