33 lines
726 B
Java
33 lines
726 B
Java
import net.runelite.mapping.Export;
|
|
import net.runelite.mapping.Implements;
|
|
import net.runelite.mapping.ObfuscatedName;
|
|
import net.runelite.mapping.ObfuscatedSignature;
|
|
|
|
@ObfuscatedName("ou")
|
|
@Implements("Link")
|
|
public class Link {
|
|
@ObfuscatedName("f")
|
|
@ObfuscatedSignature(
|
|
descriptor = "Lou;"
|
|
)
|
|
@Export("previous")
|
|
public Link previous;
|
|
@ObfuscatedName("j")
|
|
@ObfuscatedSignature(
|
|
descriptor = "Lou;"
|
|
)
|
|
@Export("next")
|
|
public Link next;
|
|
|
|
@ObfuscatedName("c")
|
|
@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
|
|
}
|