Skip to content

Commit

Permalink
[apache#768] Fix CheckStyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
slfan1989 committed Jun 27, 2023
1 parent bdbe491 commit 0a99ccf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/main/java/org/apache/uniffle/cli/UniffleAdminCLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ public UniffleAdminCLI(String shortPrefix, String longPrefix) {
false, "Help for the Uniffle Admin CLI.");
coordinatorHost = new Option(shortPrefix + "s", longPrefix + "coordinatorHost",
true, "This is coordinator server host.");
coordinatorPort = new Option(shortPrefix + "p", longPrefix + "port",
coordinatorPort = new Option(shortPrefix + "p", longPrefix + "coordinatorPort",
true, "This is coordinator server port.");
ssl = new Option("l", longPrefix + "ssl", false, "use SSL");
ssl = new Option(null, longPrefix + "ssl", false, "use SSL.");

allOptions.addOption(refreshCheckerCli);
allOptions.addOption(coordinatorHost);
Expand Down

0 comments on commit 0a99ccf

Please sign in to comment.