guluo2016 commented on code in PR #6949:
URL: https://github.com/apache/hbase/pull/6949#discussion_r2063374555


##########
hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestMultiParallel.java:
##########
@@ -143,7 +143,7 @@ private static byte[][] makeKeys() {
       byte[] k = starterKeys[kIdx];
       byte[] cp = new byte[k.length + 1];
       System.arraycopy(k, 0, cp, 0, k.length);
-      cp[k.length] = new Integer(i % 256).byteValue();
+      cp[k.length] = Integer.valueOf(i % 256).byteValue();

Review Comment:
   Thanks @Apache9  for triggering the GitHub Copilot review!
   These nitpicks seem reasonable in here and i will apply the changes.



-- 
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