client: rev 198 (#3014)
* client: rev 198 * client: checkstyle Co-authored-by: therealnull <therealnull@gmail.com>
This commit is contained in:
@@ -3,39 +3,39 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("mf")
|
||||
@ObfuscatedName("ml")
|
||||
@Implements("Node")
|
||||
public class Node {
|
||||
@ObfuscatedName("fu")
|
||||
@ObfuscatedName("fx")
|
||||
@Export("key")
|
||||
public long key;
|
||||
@ObfuscatedName("fb")
|
||||
@ObfuscatedName("fr")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmf;"
|
||||
descriptor = "Lml;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Node previous;
|
||||
@ObfuscatedName("fp")
|
||||
@ObfuscatedName("fe")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lmf;"
|
||||
descriptor = "Lml;"
|
||||
)
|
||||
@Export("next")
|
||||
public Node next;
|
||||
|
||||
@ObfuscatedName("eo")
|
||||
@ObfuscatedName("fc")
|
||||
@Export("remove")
|
||||
public void remove() {
|
||||
if (this.next != null) { // L: 9
|
||||
this.next.previous = this.previous; // L: 10
|
||||
this.previous.next = this.next; // L: 11
|
||||
this.previous = null; // L: 12
|
||||
this.next = null; // L: 13
|
||||
if (this.next != null) {
|
||||
this.next.previous = this.previous;
|
||||
this.previous.next = this.next;
|
||||
this.previous = null;
|
||||
this.next = null;
|
||||
}
|
||||
} // L: 14
|
||||
}
|
||||
|
||||
@ObfuscatedName("ew")
|
||||
@ObfuscatedName("fi")
|
||||
@Export("hasNext")
|
||||
public boolean hasNext() {
|
||||
return this.next != null; // L: 17
|
||||
return this.next != null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user