Skip to content

Commit

Permalink
fix: addressing reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Aug 13, 2024
1 parent b8abcc9 commit 1a7b121
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,8 @@ public void splitAndTransfer(int startIndex, int length) {
to.sizeBuffer = to.allocateBuffers((long) length * SIZE_WIDTH);

/* splitAndTransfer the size buffer */
int maxOffsetAndSizeSum = -1;
int minOffsetValue = -1;
int maxOffsetAndSizeSum = Integer.MIN_VALUE;
int minOffsetValue = Integer.MAX_VALUE;
for (int i = 0; i < length; i++) {
final int offsetValue = offsetBuffer.getInt((long) (startIndex + i) * OFFSET_WIDTH);
final int sizeValue = sizeBuffer.getInt((long) (startIndex + i) * SIZE_WIDTH);
Expand Down

0 comments on commit 1a7b121

Please sign in to comment.