rsc: please read the commit message for my neverending descent into madness
how do i stop making castles every time i go to the beach i make a castle every time i open blender i model castles every time i play chess i castle i just cant stop making castles dude
This commit is contained in:
@@ -6,36 +6,36 @@ import net.runelite.mapping.ObfuscatedSignature;
|
||||
@ObfuscatedName("ga")
|
||||
@Implements("Node")
|
||||
public class Node {
|
||||
@ObfuscatedName("cm")
|
||||
@Export("key")
|
||||
public long key;
|
||||
@ObfuscatedName("cc")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lga;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Node previous;
|
||||
@ObfuscatedName("co")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lga;"
|
||||
)
|
||||
@Export("next")
|
||||
public Node next;
|
||||
@ObfuscatedName("cm")
|
||||
@Export("key")
|
||||
public long key;
|
||||
@ObfuscatedName("cc")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lga;"
|
||||
)
|
||||
@Export("previous")
|
||||
public Node previous;
|
||||
@ObfuscatedName("co")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lga;"
|
||||
)
|
||||
@Export("next")
|
||||
public Node next;
|
||||
|
||||
@ObfuscatedName("ea")
|
||||
@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("ea")
|
||||
@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
|
||||
}
|
||||
} // L: 14
|
||||
|
||||
@ObfuscatedName("eu")
|
||||
@Export("hasNext")
|
||||
public boolean hasNext() {
|
||||
return this.next != null;
|
||||
}
|
||||
@ObfuscatedName("eu")
|
||||
@Export("hasNext")
|
||||
public boolean hasNext() {
|
||||
return this.next != null; // L: 17
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user