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,27 +6,27 @@ import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("gm")
@Implements("Link")
public class Link {
@ObfuscatedName("h")
@ObfuscatedSignature(
descriptor = "Lgm;"
)
@Export("previous")
public Link previous;
@ObfuscatedName("v")
@ObfuscatedSignature(
descriptor = "Lgm;"
)
@Export("next")
public Link next;
@ObfuscatedName("n")
@ObfuscatedSignature(
descriptor = "Lgm;"
)
@Export("previous")
public Link previous;
@ObfuscatedName("v")
@ObfuscatedSignature(
descriptor = "Lgm;"
)
@Export("next")
public Link next;
@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
}
} // L: 13
@ObfuscatedName("n")
@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;
}
}
}