mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-16 02:07:08 +00:00
remove unused option '-recurse' from usage listing
This commit is contained in:
parent
a53860d53d
commit
9a46840192
@ -191,8 +191,6 @@ public class Option {
|
||||
} else if (s.startsWith("-o") && s.length() > 3) {
|
||||
s = s.substring(2);
|
||||
outputDir = new File(StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(s));
|
||||
} else if (s.equalsIgnoreCase("-recurse") || s.equalsIgnoreCase("-r")) {
|
||||
// recurse = true;
|
||||
} else if (s.equalsIgnoreCase("-exclude") || s.equalsIgnoreCase("-x")) {
|
||||
i++;
|
||||
if (i == arg.length) {
|
||||
|
@ -101,7 +101,6 @@ public class OptionPrint {
|
||||
System.out.println(" -o[utput] \"dir\"\tTo generate images in the specified directory");
|
||||
System.out.println(" -DVAR1=value\tTo set a preprocessing variable as if '!define VAR1 value' were used");
|
||||
System.out.println(" -Sparam1=value\tTo set a skin parameter as if 'skinparam param1 value' were used");
|
||||
System.out.println(" -r[ecurse]\t\trecurse through directories");
|
||||
// System.out.println(" -config \"file\"\tTo read the provided config file
|
||||
// before each diagram");
|
||||
final char separator = SFile.separatorChar;
|
||||
|
Loading…
Reference in New Issue
Block a user