commandLine.addOption(active);
}
//this will throw and CommandLineParserException if needed
if(!ignoreRequirements) {
RequiredOptionException re = checkForMissingRequiredOptions(processedCommand, commandLine);
if(re != null)
commandLine.setParserException(re);
}
return commandLine;