rs-client: remove Export annotations
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import net.runelite.mapping.Export;
|
||||
import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
@@ -7,23 +6,19 @@ import net.runelite.mapping.ObfuscatedSignature;
|
||||
@Implements("Node")
|
||||
public class Node {
|
||||
@ObfuscatedName("cp")
|
||||
@Export("key")
|
||||
public long key;
|
||||
@ObfuscatedName("ch")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lgw;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Node previous;
|
||||
@ObfuscatedName("cs")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lgw;"
|
||||
)
|
||||
@Export("next")
|
||||
public Node next;
|
||||
|
||||
@ObfuscatedName("fa")
|
||||
@Export("remove")
|
||||
public void remove() {
|
||||
if (this.next != null) { // L: 9
|
||||
this.next.previous = this.previous; // L: 10
|
||||
@@ -34,7 +29,6 @@ public class Node {
|
||||
} // L: 14
|
||||
|
||||
@ObfuscatedName("fh")
|
||||
@Export("hasNext")
|
||||
public boolean hasNext() {
|
||||
return this.next != null; // L: 17
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user