project: Rev 182
This commit is contained in:
@@ -4,31 +4,31 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("la")
|
||||
@ObfuscatedName("ln")
|
||||
@Implements("IterableNodeHashTable")
|
||||
public final class IterableNodeHashTable implements Iterable {
|
||||
@ObfuscatedName("q")
|
||||
@ObfuscatedName("s")
|
||||
@Export("size")
|
||||
int size;
|
||||
@ObfuscatedName("w")
|
||||
@ObfuscatedName("j")
|
||||
@ObfuscatedSignature(
|
||||
signature = "[Lfw;"
|
||||
signature = "[Lfb;"
|
||||
)
|
||||
@Export("buckets")
|
||||
Node[] buckets;
|
||||
@ObfuscatedName("e")
|
||||
@ObfuscatedName("i")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lfw;"
|
||||
signature = "Lfb;"
|
||||
)
|
||||
@Export("currentGet")
|
||||
Node currentGet;
|
||||
@ObfuscatedName("p")
|
||||
@ObfuscatedName("k")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lfw;"
|
||||
signature = "Lfb;"
|
||||
)
|
||||
@Export("current")
|
||||
Node current;
|
||||
@ObfuscatedName("k")
|
||||
@ObfuscatedName("u")
|
||||
@Export("index")
|
||||
int index;
|
||||
|
||||
@@ -45,9 +45,9 @@ public final class IterableNodeHashTable implements Iterable {
|
||||
|
||||
}
|
||||
|
||||
@ObfuscatedName("q")
|
||||
@ObfuscatedName("s")
|
||||
@ObfuscatedSignature(
|
||||
signature = "(J)Lfw;"
|
||||
signature = "(J)Lfb;"
|
||||
)
|
||||
@Export("get")
|
||||
public Node get(long var1) {
|
||||
@@ -65,9 +65,9 @@ public final class IterableNodeHashTable implements Iterable {
|
||||
return null;
|
||||
}
|
||||
|
||||
@ObfuscatedName("w")
|
||||
@ObfuscatedName("j")
|
||||
@ObfuscatedSignature(
|
||||
signature = "(Lfw;J)V"
|
||||
signature = "(Lfb;J)V"
|
||||
)
|
||||
@Export("put")
|
||||
public void put(Node var1, long var2) {
|
||||
@@ -83,7 +83,7 @@ public final class IterableNodeHashTable implements Iterable {
|
||||
var1.key = var2;
|
||||
}
|
||||
|
||||
@ObfuscatedName("e")
|
||||
@ObfuscatedName("i")
|
||||
@Export("clear")
|
||||
public void clear() {
|
||||
for (int var1 = 0; var1 < this.size; ++var1) {
|
||||
@@ -103,9 +103,9 @@ public final class IterableNodeHashTable implements Iterable {
|
||||
this.current = null;
|
||||
}
|
||||
|
||||
@ObfuscatedName("p")
|
||||
@ObfuscatedName("k")
|
||||
@ObfuscatedSignature(
|
||||
signature = "()Lfw;"
|
||||
signature = "()Lfb;"
|
||||
)
|
||||
@Export("first")
|
||||
public Node first() {
|
||||
@@ -113,28 +113,29 @@ public final class IterableNodeHashTable implements Iterable {
|
||||
return this.next();
|
||||
}
|
||||
|
||||
@ObfuscatedName("k")
|
||||
@ObfuscatedName("u")
|
||||
@ObfuscatedSignature(
|
||||
signature = "()Lfw;"
|
||||
signature = "()Lfb;"
|
||||
)
|
||||
@Export("next")
|
||||
public Node next() {
|
||||
Node var1;
|
||||
if (this.index > 0 && this.buckets[this.index - 1] != this.current) {
|
||||
var1 = this.current;
|
||||
this.current = var1.previous;
|
||||
return var1;
|
||||
} else {
|
||||
do {
|
||||
if (this.index >= this.size) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var1 = this.buckets[this.index++].previous;
|
||||
} while(var1 == this.buckets[this.index - 1]);
|
||||
|
||||
this.current = var1.previous;
|
||||
return var1;
|
||||
}
|
||||
do {
|
||||
if (this.index >= this.size) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var1 = this.buckets[this.index++].previous;
|
||||
} while(var1 == this.buckets[this.index - 1]);
|
||||
|
||||
this.current = var1.previous;
|
||||
return var1;
|
||||
}
|
||||
|
||||
public Iterator iterator() {
|
||||
|
||||
Reference in New Issue
Block a user