Commit cad9fbfd authored by Phillip Webb's avatar Phillip Webb

Fix CLI help formatting issue with '-cp'

Ensure that '--cp' is replaced with a same length string to prevent
odd help text formatting.
parent 4fc9dfc2
......@@ -112,7 +112,7 @@ public class OptionHandler {
catch (IOException ex) {
return "Help not available";
}
this.help = out.toString().replace(" --cp ", " -cp ");
this.help = out.toString().replace(" --cp ", " -cp ");
}
return this.help;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment