This commit is contained in:
zeruth
2019-06-16 22:31:48 -04:00
parent 2e873af898
commit 39a9ae35ab
218 changed files with 16857 additions and 16879 deletions

View File

@@ -125,16 +125,15 @@ public final class IterableNodeHashTable implements Iterable {
this.current = var1.previous;
return var1;
} else {
do {
if(this.index >= this.size) {
return null;
}
while(this.index < this.size) {
var1 = this.buckets[this.index++].previous;
} while(var1 == this.buckets[this.index - 1]);
if(var1 != this.buckets[this.index - 1]) {
this.current = var1.previous;
return var1;
}
}
this.current = var1.previous;
return var1;
return null;
}
}