We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0db8386 commit 7638580Copy full SHA for 7638580
src/jdk.jcmd/share/classes/sun/tools/jmap/JMap.java
@@ -216,6 +216,11 @@ private static void dump(String pid, String options)
216
liveopt = "-live";
217
} else if (subopt.startsWith("file=")) {
218
filename = parseFileName(subopt);
219
+ } else if (subopt.equals("format=b")) {
220
+ // ignore format (not needed at this time)
221
+ } else {
222
+ System.err.println("Fail: invalid option: '" + subopt + "'");
223
+ usage(1);
224
}
225
226
0 commit comments