You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2021/12/22 17:14:46 UTC

[GitHub] [accumulo] DomGarguilo commented on a change in pull request #2398: Make CreateEmpty implement KeywordExecutable

DomGarguilo commented on a change in pull request #2398:
URL: https://github.com/apache/accumulo/pull/2398#discussion_r774042801



##########
File path: core/src/main/java/org/apache/accumulo/core/file/rfile/CreateEmpty.java
##########
@@ -76,10 +79,25 @@ public void validate(String name, String value) throws ParameterException {
   }
 
   public static void main(String[] args) throws Exception {
+    new CreateEmpty().execute(args);
+  }
+
+  @Override
+  public String keyword() {
+    return "create-empty";
+  }
+
+  @Override
+  public String description() {
+    return "creates an empty rfile";

Review comment:
       ```suggestion
       return "Creates an empty rfile";
   ```
   The rest of the descriptions start with a capital letter.




-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org