Apache9 commented on code in PR #137:
URL:
https://github.com/apache/hbase-operator-tools/pull/137#discussion_r1311681098
##########
hbase-hbck2/src/main/java/org/apache/hbase/HBCK2.java:
##########
@@ -613,8 +613,7 @@ private static String getCommandUsage() {
private static void usageAddFsRegionsMissingInMeta(PrintWriter writer) {
writer.println(" " + ADD_MISSING_REGIONS_IN_META_FOR_TABLES + "
[OPTIONS]");
- writer.println(" [<NAMESPACE|"
- + "NAMESPACE:TABLENAME>...|-i <INPUTFILES>...]");
+ writer.println(" [<NAMESPACE|" + "NAMESPACE:TABLENAME>...|-i
<INPUTFILES>...]");
Review Comment:
Here we could just remove the '+' operator?
##########
hbase-hbck2/src/main/java/org/apache/hbase/HBCK2.java:
##########
@@ -800,8 +798,8 @@ private static void usageExtraRegionsInMeta(PrintWriter
writer) {
}
private static void usageReportMissingRegionsInMeta(PrintWriter writer) {
- writer.println(" " + REPORT_MISSING_REGIONS_IN_META + " [<NAMESPACE|"
- + "NAMESPACE:TABLENAME>...|");
+ writer
+ .println(" " + REPORT_MISSING_REGIONS_IN_META + " [<NAMESPACE|" +
"NAMESPACE:TABLENAME>...|");
Review Comment:
Ditto. At least we could remove the last '+'.
##########
hbase-hbck2/src/main/java/org/apache/hbase/HBCK2.java:
##########
@@ -767,8 +766,7 @@ private static void usageReplication(PrintWriter writer) {
}
private static void usageExtraRegionsInMeta(PrintWriter writer) {
- writer.println(" " + EXTRA_REGIONS_IN_META + " [<NAMESPACE|"
- + "NAMESPACE:TABLENAME>...|");
+ writer.println(" " + EXTRA_REGIONS_IN_META + " [<NAMESPACE|" +
"NAMESPACE:TABLENAME>...|");
Review Comment:
Ditto.
--
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]