Skip to content

Commit

Permalink
fix IntIntervalSpliterator assignment order
Browse files Browse the repository at this point in the history
Signed-off-by: david-gang <michaelgang@gmail.com>
  • Loading branch information
david-gang committed Apr 15, 2019
1 parent 0f78882 commit e425088
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1026,9 +1026,9 @@ private static final class IntIntervalSpliterator implements Spliterator.OfInt

private IntIntervalSpliterator(int from, int to, int step)
{
this.current = from;
this.to = to;
this.step = step;
this.current = from;
this.isAscending = from <= to;
}

Expand Down

0 comments on commit e425088

Please sign in to comment.