project: rev 195

This commit is contained in:
ThatGamerBlue
2021-04-14 13:14:08 +01:00
parent 05ff44d4ad
commit c9d40d93dd
439 changed files with 55170 additions and 51182 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("mh")
@Implements("Node")
public class Node {
@ObfuscatedName("cm")
@ObfuscatedName("fk")
@Export("key")
public long key;
@ObfuscatedName("cc")
@ObfuscatedName("fs")
@ObfuscatedSignature(
descriptor = "Lga;"
descriptor = "Lmh;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("co")
@ObfuscatedName("fz")
@ObfuscatedSignature(
descriptor = "Lga;"
descriptor = "Lmh;"
)
@Export("next")
public Node next;
@ObfuscatedName("ea")
@ObfuscatedName("ex")
@Export("remove")
public void remove() {
if (this.next != null) { // L: 9
@@ -33,7 +33,7 @@ public class Node {
}
} // L: 14
@ObfuscatedName("eu")
@ObfuscatedName("ed")
@Export("hasNext")
public boolean hasNext() {
return this.next != null; // L: 17