Skip to content

Commit

Permalink
fix: addressing reviews v3
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Aug 14, 2024
1 parent 456dbec commit 093b6bf
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -509,9 +509,7 @@ public void splitAndTransfer(int startIndex, int length) {
if (maxOffsetAndSizeSum < offsetValue + sizeValue) {
maxOffsetAndSizeSum = offsetValue + sizeValue;
}
if (minOffsetValue == -1 || minOffsetValue > offsetValue) {
minOffsetValue = offsetValue;
}
minOffsetValue = Math.min(minOffsetValue, offsetValue);
}

/* splitAndTransfer the offset buffer */
Expand Down

0 comments on commit 093b6bf

Please sign in to comment.