Reformatted 'help' cli arg

This commit is contained in:
Collin Smith 2020-11-22 14:05:18 -08:00
parent 872126d2de
commit 8cfc94bde7

View File

@ -37,8 +37,11 @@ public class DesktopLauncher {
LogManager.setLevel(DesktopLauncher.class.getName(), Level.DEBUG);
Options options = new Options()
.addOption("help", false,
"prints this message")
.addOption(Option
.builder("h")
.longOpt("help")
.desc("prints this message")
.build())
.addOption(Option
.builder("v")
.longOpt("viewport")