summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2017-03-14 14:48:56 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2017-03-14 14:48:56 -0400
commita1662cac9d27581cffda8e6d1b2ede9fa346724d (patch)
tree35259598045393c4bf11c49c8896001fd0cf8121 /BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java
parent4f572b2db312ae4368afd031b50ce3c78a12fc8d (diff)
Formatting
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java b/BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java
index ddad5e2..b6f7a87 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java
@@ -1,20 +1,22 @@
package bjc.utils.cli;
/**
- * A class for a command that delegates to another command
+ * A class for a command that delegates to another command.
*
* @author ben
*
*/
class DelegatingCommand implements ICommand {
- // The command to delegate to
+ /*
+ * The command to delegate to.
+ */
private ICommand delegate;
/**
- * Create a new command that delegates to another command
+ * Create a new command that delegates to another command.
*
* @param delegate
- * The command to delegate to
+ * The command to delegate to.
*/
public DelegatingCommand(ICommand delegate) {
this.delegate = delegate;