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

@@ -56,17 +56,16 @@ public class IterableNodeHashTableIterator implements Iterator {
this.__w = var1;
return var1;
} else {
do {
if(this.__q >= this.hashTable.size) {
return null;
}
while(this.__q < this.hashTable.size) {
var1 = this.hashTable.buckets[this.__q++].previous;
} while(var1 == this.hashTable.buckets[this.__q - 1]);
if(var1 != this.hashTable.buckets[this.__q - 1]) {
this.__f = var1.previous;
this.__w = var1;
return var1;
}
}
this.__f = var1.previous;
this.__w = var1;
return var1;
return null;
}
}