chore: rev 190

This commit is contained in:
ThatGamerBlue
2020-06-18 12:15:38 +01:00
parent c97f7b196e
commit 655106b9df
351 changed files with 41484 additions and 41558 deletions

View File

@@ -3,26 +3,26 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("ga")
@ObfuscatedName("gr")
@Implements("Node")
public class Node {
@ObfuscatedName("ct")
@ObfuscatedName("cm")
@Export("key")
public long key;
@ObfuscatedName("cf")
@ObfuscatedSignature(
signature = "Lga;"
signature = "Lgr;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("ca")
@ObfuscatedName("ct")
@ObfuscatedSignature(
signature = "Lga;"
signature = "Lgr;"
)
@Export("next")
public Node next;
@ObfuscatedName("fd")
@ObfuscatedName("fx")
@Export("remove")
public void remove() {
if (this.next != null) {
@@ -33,7 +33,7 @@ public class Node {
}
}
@ObfuscatedName("fo")
@ObfuscatedName("fy")
@Export("hasNext")
public boolean hasNext() {
return this.next != null;