cshannon commented on code in PR #4859:
URL: https://github.com/apache/accumulo/pull/4859#discussion_r1747469146
##########
core/src/main/java/org/apache/accumulo/core/clientImpl/bulk/Bulk.java:
##########
@@ -64,8 +67,11 @@ public Files getFiles() {
*/
public static class Tablet {
- private final byte[] endRow;
- private final byte[] prevEndRow;
+ private byte[] endRow;
Review Comment:
I am not sure but if the final keyword causes issues without using Unsafe,
although it would still maybe cause weird behavior so still not a good idea
since using reflection.
However, the thing that does cause problems is not having a default
constructor. Adding in a default constructor means we can't use final so it has
to be removed either way.
--
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]