--- a/langtools/src/share/classes/com/sun/tools/javap/JavapTask.java Thu Feb 06 18:49:01 2014 +0000
+++ b/langtools/src/share/classes/com/sun/tools/javap/JavapTask.java Thu Feb 06 10:58:51 2014 -0800
@@ -273,7 +273,9 @@
void process(JavapTask task, String opt, String arg) throws BadArgs {
int sep = opt.indexOf(":");
try {
- task.options.indentWidth = Integer.valueOf(opt.substring(sep + 1));
+ int i = Integer.valueOf(opt.substring(sep + 1));
+ if (i > 0) // silently ignore invalid values
+ task.options.indentWidth = i;
} catch (NumberFormatException e) {
}
}
@@ -289,7 +291,9 @@
void process(JavapTask task, String opt, String arg) throws BadArgs {
int sep = opt.indexOf(":");
try {
- task.options.tabColumn = Integer.valueOf(opt.substring(sep + 1));
+ int i = Integer.valueOf(opt.substring(sep + 1));
+ if (i > 0) // silently ignore invalid values
+ task.options.tabColumn = i;
} catch (NumberFormatException e) {
}
}
--- a/langtools/src/share/classes/com/sun/tools/javap/Options.java Thu Feb 06 18:49:01 2014 +0000
+++ b/langtools/src/share/classes/com/sun/tools/javap/Options.java Thu Feb 06 10:58:51 2014 -0800
@@ -86,6 +86,6 @@
public boolean showConstants;
public boolean sysInfo;
public boolean showInnerClasses;
- public int indentWidth = 2; // #spaces per indentWidth level
- public int tabColumn = 40; // column number for comments
+ public int indentWidth = 2; // #spaces per indentWidth level; must be > 0
+ public int tabColumn = 40; // column number for comments; must be > 0
}