chore: rev 188

This commit is contained in:
Owain van Brakel
2020-01-29 14:20:08 +01:00
parent c785d0015b
commit add4ca8005
357 changed files with 41366 additions and 41447 deletions

View File

@@ -3,26 +3,26 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("gk")
@ObfuscatedName("ft")
@Implements("Node")
public class Node {
@ObfuscatedName("cr")
@ObfuscatedName("ci")
@Export("key")
public long key;
@ObfuscatedName("cy")
@ObfuscatedName("ca")
@ObfuscatedSignature(
signature = "Lgk;"
signature = "Lft;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("cz")
@ObfuscatedName("cc")
@ObfuscatedSignature(
signature = "Lgk;"
signature = "Lft;"
)
@Export("next")
public Node next;
@ObfuscatedName("fu")
@ObfuscatedName("fz")
@Export("remove")
public void remove() {
if (this.next != null) {
@@ -33,7 +33,7 @@ public class Node {
}
}
@ObfuscatedName("fl")
@ObfuscatedName("fj")
@Export("hasNext")
public boolean hasNext() {
return this.next != null;