chore: rev 190

This commit is contained in:
ThatGamerBlue
2020-06-18 12:15:38 +01:00
parent c97f7b196e
commit 655106b9df
351 changed files with 41484 additions and 41558 deletions

View File

@@ -4,30 +4,30 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("jg")
@ObfuscatedName("jl")
@Implements("IterableDualNodeQueueIterator")
public class IterableDualNodeQueueIterator implements Iterator {
@ObfuscatedName("x")
@ObfuscatedName("m")
@ObfuscatedSignature(
signature = "Ljz;"
signature = "Ljq;"
)
@Export("queue")
IterableDualNodeQueue queue;
@ObfuscatedName("m")
@ObfuscatedName("o")
@ObfuscatedSignature(
signature = "Lge;"
signature = "Lgf;"
)
@Export("head")
DualNode head;
@ObfuscatedName("k")
@ObfuscatedName("q")
@ObfuscatedSignature(
signature = "Lge;"
signature = "Lgf;"
)
@Export("last")
DualNode last;
@ObfuscatedSignature(
signature = "(Ljz;)V"
signature = "(Ljq;)V"
)
IterableDualNodeQueueIterator(IterableDualNodeQueue var1) {
this.last = null;
@@ -41,8 +41,12 @@ public class IterableDualNodeQueueIterator implements Iterator {
}
public void remove() {
this.last.removeDual();
this.last = null;
if (this.last == null) {
throw new IllegalStateException();
} else {
this.last.removeDual();
this.last = null;
}
}
public Object next() {