ctubbsii commented on code in PR #4745:
URL: https://github.com/apache/accumulo/pull/4745#discussion_r1694274635


##########
core/src/main/java/org/apache/accumulo/core/file/rfile/RFile.java:
##########
@@ -1055,7 +1054,7 @@ private void _seek(Range range) throws IOException {
             hasTop = true;
           }
 
-          MutableByteSequence valbs = new MutableByteSequence(new byte[64], 0, 
0);
+          final ArrayByteSequence valbs = new ArrayByteSequence(new byte[64], 
0, 0);

Review Comment:
   ```suggestion
             final var valbs = new ArrayByteSequence(new byte[64], 0, 0);
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to