Tweak the arguments passed to the command-line arguments parser so that it fails less often for invalid arguments.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@560 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
b6a7ebd3c4
commit
4c5f640eb7
|
|
@ -280,7 +280,7 @@ public class ArgumentParser {
|
|||
OurPosixParser parser = new OurPosixParser();
|
||||
|
||||
try {
|
||||
parser.parse(m_options, args, !allowIncomplete);
|
||||
parser.parse(m_options, args, false);
|
||||
}
|
||||
catch( ParseException e ) {
|
||||
boolean isIncomplete = e instanceof MissingArgumentException ||
|
||||
|
|
|
|||
Loading…
Reference in New Issue