summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/cli/GenericCommand.java
diff options
context:
space:
mode:
authorBen Culkin <scorpress@gmail.com>2020-04-13 18:40:41 -0400
committerBen Culkin <scorpress@gmail.com>2020-04-13 18:40:41 -0400
commitd4ca769e542b2489b1e23cfcbdc3a0b7275b87cd (patch)
tree1653a7399f97fb0c63ce62e3f60fd830d5c37f70 /base/src/main/java/bjc/utils/cli/GenericCommand.java
parent2ac2e31a56ae59ee582e43a90c3495f86dd9ee7a (diff)
Cleanup pass
Cleanup pass to uniformize things
Diffstat (limited to 'base/src/main/java/bjc/utils/cli/GenericCommand.java')
-rw-r--r--base/src/main/java/bjc/utils/cli/GenericCommand.java19
1 files changed, 11 insertions, 8 deletions
diff --git a/base/src/main/java/bjc/utils/cli/GenericCommand.java b/base/src/main/java/bjc/utils/cli/GenericCommand.java
index bb624cd..a847bea 100644
--- a/base/src/main/java/bjc/utils/cli/GenericCommand.java
+++ b/base/src/main/java/bjc/utils/cli/GenericCommand.java
@@ -16,22 +16,25 @@ public class GenericCommand implements Command {
* Create a new generic command.
*
* @param handler
- * The handler to use for the command.
+ * The handler to use for the command.
*
* @param description
- * The description of the command. May be null, in which case a
- * default is provided.
+ * The description of the command. May be null, in which case
+ * a default is provided.
*
* @param help
- * The detailed help message for the command. May be null, in
- * which case the description is repeated for the detailed help.
+ * The detailed help message for the command. May be null, in
+ * which case the description is repeated for the detailed
+ * help.
*/
- public GenericCommand(final CommandHandler handler, final String description, final String help) {
- if(handler == null) throw new NullPointerException("Command handler must not be null");
+ public GenericCommand(final CommandHandler handler, final String description,
+ final String help) {
+ if (handler == null)
+ throw new NullPointerException("Command handler must not be null");
this.handler = handler;
- if(description == null) {
+ if (description == null) {
this.help = new NullHelp();
} else {
this.help = new GenericHelp(description, help);