client: rev 201
This commit is contained in:
@@ -4,61 +4,61 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("le")
|
||||
@ObfuscatedName("ld")
|
||||
@Implements("IterableDualNodeQueueIterator")
|
||||
public class IterableDualNodeQueueIterator implements Iterator {
|
||||
@ObfuscatedName("l")
|
||||
@ObfuscatedName("i")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Llh;"
|
||||
descriptor = "Llm;"
|
||||
)
|
||||
@Export("queue")
|
||||
IterableDualNodeQueue queue;
|
||||
@ObfuscatedName("q")
|
||||
@ObfuscatedName("w")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lnu;"
|
||||
descriptor = "Lnt;"
|
||||
)
|
||||
@Export("head")
|
||||
DualNode head;
|
||||
@ObfuscatedName("f")
|
||||
@ObfuscatedName("s")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lnu;"
|
||||
descriptor = "Lnt;"
|
||||
)
|
||||
@Export("last")
|
||||
DualNode last;
|
||||
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "(Llh;)V"
|
||||
descriptor = "(Llm;)V"
|
||||
)
|
||||
IterableDualNodeQueueIterator(IterableDualNodeQueue var1) {
|
||||
this.last = null;
|
||||
this.queue = var1;
|
||||
this.head = this.queue.sentinel.previousDual;
|
||||
this.last = null;
|
||||
}
|
||||
this.last = null; // L: 9
|
||||
this.queue = var1; // L: 12
|
||||
this.head = this.queue.sentinel.previousDual; // L: 13
|
||||
this.last = null; // L: 14
|
||||
} // L: 15
|
||||
|
||||
public boolean hasNext() {
|
||||
return this.queue.sentinel != this.head;
|
||||
}
|
||||
|
||||
public void remove() {
|
||||
if (this.last == null) {
|
||||
throw new IllegalStateException();
|
||||
} else {
|
||||
this.last.removeDual();
|
||||
this.last = null;
|
||||
}
|
||||
return this.queue.sentinel != this.head; // L: 29
|
||||
}
|
||||
|
||||
public Object next() {
|
||||
DualNode var1 = this.head;
|
||||
if (var1 == this.queue.sentinel) {
|
||||
var1 = null;
|
||||
this.head = null;
|
||||
DualNode var1 = this.head; // L: 18
|
||||
if (var1 == this.queue.sentinel) { // L: 19
|
||||
var1 = null; // L: 20
|
||||
this.head = null; // L: 21
|
||||
} else {
|
||||
this.head = var1.previousDual;
|
||||
this.head = var1.previousDual; // L: 23
|
||||
}
|
||||
|
||||
this.last = var1;
|
||||
return var1;
|
||||
this.last = var1; // L: 24
|
||||
return var1; // L: 25
|
||||
}
|
||||
|
||||
public void remove() {
|
||||
if (this.last == null) { // L: 33
|
||||
throw new IllegalStateException();
|
||||
} else {
|
||||
this.last.removeDual(); // L: 34
|
||||
this.last = null; // L: 35
|
||||
}
|
||||
} // L: 36
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user