project: 184 (#1670)

* 184

* checkstyle
This commit is contained in:
Owain van Brakel
2019-09-28 18:05:04 +02:00
committed by Kyle
parent 6f3152456f
commit 42acd14658
341 changed files with 90582 additions and 90740 deletions

View File

@@ -1,41 +1,41 @@
import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("fx")
@Implements("Node")
public class Node {
@ObfuscatedName("cl")
@Export("key")
public long key;
@ObfuscatedName("cw")
@ObfuscatedSignature(
signature = "Lfx;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("cq")
@ObfuscatedSignature(
signature = "Lfx;"
)
@Export("next")
public Node next;
@ObfuscatedName("fu")
@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("fa")
@Export("hasNext")
public boolean hasNext() {
return this.next != null;
}
}
import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("fx")
@Implements("Node")
public class Node {
@ObfuscatedName("cl")
@Export("key")
public long key;
@ObfuscatedName("cw")
@ObfuscatedSignature(
signature = "Lfx;"
)
@Export("previous")
public Node previous;
@ObfuscatedName("cq")
@ObfuscatedSignature(
signature = "Lfx;"
)
@Export("next")
public Node next;
@ObfuscatedName("fu")
@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("fa")
@Export("hasNext")
public boolean hasNext() {
return this.next != null;
}
}