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

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