From 70cea4b406f1cd592c59c4103c1b9b301d3b5907 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 11 Apr 2016 22:34:40 -0400 Subject: Some minor changes to the CLI system --- .../src/main/java/bjc/utils/cli/GenericCommand.java | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java') 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 99951cc..522dfbd 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java +++ b/BJC-Utils2/src/main/java/bjc/utils/cli/GenericCommand.java @@ -7,27 +7,6 @@ package bjc.utils.cli; * */ public class GenericCommand implements ICommand { - private static class GenericHelp implements ICommandHelp { - private String summary; - private String description; - - public GenericHelp(String summary, String description) { - this.summary = summary; - this.description = description; - } - - @Override - public String getSummary() { - return summary; - } - - @Override - public String getDescription() { - return description; - } - - } - private ICommandHandler handler; private ICommandHelp help; -- cgit v1.2.3