Skip to content

Commit

Permalink
Fixed input to ensureAvailabilty (#12208) (#12224)
Browse files Browse the repository at this point in the history
Authored-by: Oliver Buchien <30312325+BuchienDP@users.noreply.github.com>
  • Loading branch information
Ansku committed Mar 5, 2021
1 parent 82ee2b6 commit 5b79292
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public void dataRemoved(int firstRowIndex, int numberOfRows) {
.getVisibleRowRange();
getDataSource().ensureAvailability(
visibleRowRange.getStart(),
visibleRowRange.getEnd());
visibleRowRange.length());
}
checkExpand();
}
Expand All @@ -222,7 +222,7 @@ public void dataAdded(int firstRowIndex, int numberOfRows) {
.getVisibleRowRange();
getDataSource().ensureAvailability(
visibleRowRange.getStart(),
visibleRowRange.getEnd());
visibleRowRange.length());
}
checkExpand();
}
Expand Down

0 comments on commit 5b79292

Please sign in to comment.