rs-client/apis
This commit is contained in:
@@ -3,31 +3,30 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("gh")
|
||||
@ObfuscatedName("fq")
|
||||
@Implements("Link")
|
||||
public class Link {
|
||||
@ObfuscatedName("m")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lgh;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Link previous;
|
||||
@ObfuscatedName("f")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lgh;"
|
||||
)
|
||||
@Export("next")
|
||||
public Link next;
|
||||
@ObfuscatedName("q")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lfq;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Link previous;
|
||||
@ObfuscatedName("w")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lfq;"
|
||||
)
|
||||
@Export("next")
|
||||
public Link next;
|
||||
|
||||
@ObfuscatedName("m")
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@ObfuscatedName("q")
|
||||
@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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user