Fixed launcher. Fixed empty parameter call.

This commit is contained in:
Christian P. MOMON 2020-01-30 23:41:33 +01:00
parent 96e9b49939
commit f2342b8b07
2 changed files with 2 additions and 10 deletions

View File

@ -64,14 +64,6 @@ public final class AgirStatoolLauncher
} }
// Run. // Run.
if (args.length == 0) AgirStatoolCLI.run(args);
{
// TODO
// SikevaGUI.run();
}
else
{
AgirStatoolCLI.run(args);
}
} }
} }

View File

@ -168,7 +168,7 @@ public final class AgirStatoolCLI
logger.info("{} AgirStatool call: {}", LocalDateTime.now(), new StringList(args).toStringSeparatedBy(" ")); logger.info("{} AgirStatool call: {}", LocalDateTime.now(), new StringList(args).toStringSeparatedBy(" "));
if (isMatching(args, (String) null)) if (isMatching(args))
{ {
logger.info("No parameter."); logger.info("No parameter.");
displayHelp(); displayHelp();