More refactoring (tm)

This commit is contained in:
Lucas
2019-07-07 15:10:50 +02:00
parent e1a815eddd
commit e2aac6d899
159 changed files with 38213 additions and 46222 deletions

View File

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