chore: rev 193

This commit is contained in:
therealunull
2020-12-09 11:07:26 -05:00
parent 5cd865f43f
commit 8f587826ee
358 changed files with 62074 additions and 62020 deletions

View File

@@ -3,30 +3,30 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("gq")
@ObfuscatedName("gm")
@Implements("Link")
public class Link {
@ObfuscatedName("f")
@ObfuscatedName("h")
@ObfuscatedSignature(
descriptor = "Lgq;"
descriptor = "Lgm;"
)
@Export("previous")
public Link previous;
@ObfuscatedName("b")
@ObfuscatedName("v")
@ObfuscatedSignature(
descriptor = "Lgq;"
descriptor = "Lgm;"
)
@Export("next")
public Link next;
@ObfuscatedName("f")
@ObfuscatedName("h")
@Export("remove")
public void remove() {
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
if (this.next != null) {
this.next.previous = this.previous;
this.previous.next = this.next;
this.previous = null;
this.next = null;
}
} // L: 13
}
}