apurtell commented on code in PR #4645:
URL: https://github.com/apache/hbase/pull/4645#discussion_r929414477
##########
hbase-common/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileContextBuilder.java:
##########
@@ -44,11 +44,11 @@ public class HFileContextBuilder {
/** Whether tags to be compressed or not **/
private boolean compressTags = false;
/** the checksum type **/
- private ChecksumType checksumType = ChecksumType.getDefaultChecksumType();
+ private ChecksumType checkSumType = ChecksumType.getDefaultChecksumType();
Review Comment:
This was an instance of the inconstant capitalization warning, the field
caps didn't match a constructor param or getter or setter param.
https://github.com/google/error-prone/blob/master/docs/bugpattern/InconsistentCapitalization.md
I addressed these by changing the field name to match. We could apply the
fix in the other direction instead. 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]