summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/cli/GenericCommand.java
diff options
context:
space:
mode:
authorbjculkin <bjculkin@mix.wvu.edu>2018-02-12 22:45:04 -0500
committerbjculkin <bjculkin@mix.wvu.edu>2018-02-12 22:45:04 -0500
commitdf94066e3af02ff02d5ab4d033a3d603f743234c (patch)
tree168a1edaf58d386c175ffb601e9d4da8e13d31e2 /base/src/main/java/bjc/utils/cli/GenericCommand.java
parentae51c587c53f7ca311e556e3cbd0c5566d6c2843 (diff)
Formatting pass
Diffstat (limited to 'base/src/main/java/bjc/utils/cli/GenericCommand.java')
-rw-r--r--base/src/main/java/bjc/utils/cli/GenericCommand.java15
1 files changed, 7 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 89539a4..bb624cd 100644
--- a/base/src/main/java/bjc/utils/cli/GenericCommand.java
+++ b/base/src/main/java/bjc/utils/cli/GenericCommand.java
@@ -16,23 +16,22 @@ 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");
+ 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);