Revert "Merge branch 'master' into master"

This reverts commit 43520c1958, reversing
changes made to 2e7aea3c62.
This commit is contained in:
zeruth
2019-06-22 02:38:35 -04:00
parent 43520c1958
commit c655c9f542
224 changed files with 16901 additions and 17108 deletions

View File

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