Don't provide hints for the hint command

This commit is contained in:
Phillip Webb 2013-11-15 16:39:29 -08:00
parent d2678e08de
commit fe0dd8e08f

View File

@ -304,14 +304,21 @@ public class SpringCli {
private void showCommandHints(String starting) {
for (Command command : SpringCli.this.commands) {
if (command.getName().startsWith(starting)
|| (command.isOptionCommand() && ("--" + command.getName())
.startsWith(starting))) {
if (isHintMatch(command, starting)) {
Log.info(command.getName() + " " + command.getDescription());
}
}
}
private boolean isHintMatch(Command command, String starting) {
if (command instanceof HintCommand) {
return false;
}
return command.getName().startsWith(starting)
|| (command.isOptionCommand() && ("--" + command.getName())
.startsWith(starting));
}
private void showCommandOptionHints(String commandName,
List<String> specifiedArguments, String starting) {
Command command = find(commandName);