update client to rev 183

This commit is contained in:
ThatGamerBlue
2019-09-12 14:00:01 +01:00
parent 0446151736
commit 12c08b271a
342 changed files with 41159 additions and 41468 deletions

View File

@@ -4,33 +4,33 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("lo")
@ObfuscatedName("ls")
@Implements("IterableNodeHashTableIterator")
public class IterableNodeHashTableIterator implements Iterator {
@ObfuscatedName("s")
@ObfuscatedName("c")
@ObfuscatedSignature(
signature = "Lln;"
signature = "Llj;"
)
@Export("hashTable")
IterableNodeHashTable hashTable;
@ObfuscatedName("j")
@ObfuscatedName("x")
@ObfuscatedSignature(
signature = "Lfb;"
signature = "Lfn;"
)
@Export("head")
Node head;
@ObfuscatedName("i")
@ObfuscatedName("t")
@Export("index")
int index;
@ObfuscatedName("k")
@ObfuscatedName("g")
@ObfuscatedSignature(
signature = "Lfb;"
signature = "Lfn;"
)
@Export("last")
Node last;
@ObfuscatedSignature(
signature = "(Lln;)V"
signature = "(Llj;)V"
)
IterableNodeHashTableIterator(IterableNodeHashTable var1) {
this.last = null;
@@ -38,7 +38,7 @@ public class IterableNodeHashTableIterator implements Iterator {
this.start();
}
@ObfuscatedName("r")
@ObfuscatedName("j")
@Export("start")
void start() {
this.head = this.hashTable.buckets[0].previous;
@@ -69,8 +69,12 @@ public class IterableNodeHashTableIterator implements Iterator {
}
public void remove() {
this.last.remove();
this.last = null;
if (this.last == null) {
throw new IllegalStateException();
} else {
this.last.remove();
this.last = null;
}
}
public boolean hasNext() {