Skip to content

Commit

Permalink
remove -W as it is no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
willr3 committed Jun 11, 2021
1 parent 0fcd574 commit c043507
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/main/java/io/hyperfoil/tools/qdup/QDup.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,6 @@ public QDup(String... args) {
Options options = new Options();

OptionGroup basePathGroup = new OptionGroup();
basePathGroup.addOption(Option.builder("W")
.longOpt("waml")
.required()
.desc("convert waml to qd.yaml files")
.build()
);
basePathGroup.addOption(Option.builder("T")
.longOpt("test")
.required()
Expand Down Expand Up @@ -370,6 +364,7 @@ public QDup(String... args) {
breakpoints = commandLine.hasOption("breakpoint") ? Arrays.asList(commandLine.getOptionValues("breakpoint")) : Collections.EMPTY_LIST;
colorTerminal = commandLine.hasOption("colorTerminal");
jsonPort = Integer.parseInt(commandLine.getOptionValue("jsonport", "" + JsonServer.DEFAULT_PORT));

exitCode = commandLine.hasOption("exitCode");

outputPath = null;
Expand Down

0 comments on commit c043507

Please sign in to comment.