285286287288289290291292293294295
else { if(command.getArgument() == null) { commandLine.setParserException(new OptionParserException("An argument was given to a command that do not support it.")); } else { commandLine.addArgumentValue(parseLine); addedArgument = true; } } }
298299300301302303304305306307308
359360361362363364365366367368369
else { if(processedCommand.getArgument() == null) { commandLine.setParserException(new OptionParserException("An argument was given to a command that does not support it.")); } else { commandLine.addArgumentValue(parseLine); addedArgument = true; } } }