Skip to content

Commit

Permalink
Remove some debug stuff.
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com>
  • Loading branch information
Yury-Fridlyand committed Mar 22, 2023
1 parent bd24bae commit 669153a
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ public void open() {

@Override
public boolean hasNext() {
var inNext = input.hasNext();
var cond = count < offset + limit;
return inNext && cond;
return input.hasNext() && count < offset + limit;
}

@Override
Expand Down

0 comments on commit 669153a

Please sign in to comment.