From a1662cac9d27581cffda8e6d1b2ede9fa346724d Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Tue, 14 Mar 2017 14:48:56 -0400 Subject: Formatting --- BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/cli/DelegatingCommand.java') 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; -- cgit v1.2.3