summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2016-11-10 19:44:22 -0500
committerbculkin2442 <bjculkin@mix.wvu.edu>2016-11-10 19:44:22 -0500
commitba9cf27de7e9f31dfa97a7266979f300101d67f9 (patch)
treedbf938e02d647e1be519808f8a14c6e954cab732 /BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java
parent5cf7bcf156970fe72f79e40b8a6e320ea160ac83 (diff)
Doc updates
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java14
1 files changed, 6 insertions, 8 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java b/BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java
index 54d2fa0..7a38e9b 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java
@@ -1,7 +1,5 @@
package bjc.utils.cli;
-import org.eclipse.jdt.annotation.Nullable;
-
/**
* Generic command implementation
*
@@ -18,14 +16,14 @@ public class GenericCommand implements ICommand {
* 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
+ * The description of the command. May be null
* @param help
- * The detailed help message for the command. May be null
+ * The detailed help message for the command. May be null
*/
- public GenericCommand(ICommandHandler handler, @Nullable String description,
- @Nullable String help) {
+ public GenericCommand(ICommandHandler handler, String description,
+ String help) {
if (handler == null) {
throw new NullPointerException(
"Command handler must not be null");
@@ -59,4 +57,4 @@ public class GenericCommand implements ICommand {
public boolean isAlias() {
return false;
}
-} \ No newline at end of file
+}