1
0

[HUDI-522] Use the same version jcommander uniformly (#1214)

This commit is contained in:
lamber-ken
2020-01-13 02:48:52 +08:00
committed by vinoth chandar
parent 017ee8e661
commit d9675c4ec0
18 changed files with 15 additions and 18 deletions

View File

@@ -89,7 +89,7 @@ public class HoodieJavaApp {
public static void main(String[] args) throws Exception {
HoodieJavaApp cli = new HoodieJavaApp();
JCommander cmd = new JCommander(cli, args);
JCommander cmd = new JCommander(cli, null, args);
if (cli.help) {
cmd.usage();

View File

@@ -98,7 +98,7 @@ public class HoodieJavaStreamingApp {
public static void main(String[] args) throws Exception {
HoodieJavaStreamingApp cli = new HoodieJavaStreamingApp();
JCommander cmd = new JCommander(cli, args);
JCommander cmd = new JCommander(cli, null, args);
if (cli.help) {
cmd.usage();