rsclient: rev 191
This commit is contained in:
@@ -3,30 +3,30 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("gd")
|
||||
@ObfuscatedName("gr")
|
||||
@Implements("Link")
|
||||
public class Link {
|
||||
@ObfuscatedName("m")
|
||||
@ObfuscatedName("z")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lgd;"
|
||||
descriptor = "Lgr;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Link previous;
|
||||
@ObfuscatedName("o")
|
||||
@ObfuscatedName("k")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lgd;"
|
||||
descriptor = "Lgr;"
|
||||
)
|
||||
@Export("next")
|
||||
public Link next;
|
||||
|
||||
@ObfuscatedName("m")
|
||||
@ObfuscatedName("z")
|
||||
@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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user