diff --git a/src/hotspot/share/services/diagnosticCommand.cpp b/src/hotspot/share/services/diagnosticCommand.cpp index 697567d7371..a7413ad25e5 100644 --- a/src/hotspot/share/services/diagnosticCommand.cpp +++ b/src/hotspot/share/services/diagnosticCommand.cpp @@ -952,13 +952,14 @@ ClassesDCmd::ClassesDCmd(outputStream* output, bool heap) : DCmdWithParser(output, heap), _verbose("-verbose", "Dump the detailed content of a Java class.\n" - "\t\tclasses are annotated with flags:\n" - "\t\tF = has, or inherits, a non-empty finalize method,\n" - "\t\tf = has final method,\n" - "\t\tW = methods rewritten,\n" - "\t\tC = marked with @Contended annotation,\n" - "\t\tR = has been redefined,\n" - "\t\tS = is an (App)CDS shared class (if -location is also specified, (either) 's' indicating static (or) 'd' indicating dynamic AOT cache locations, are appended)", + "\t\t classes are annotated with flags:\n" + "\t\t F = has, or inherits, a non-empty finalize method,\n" + "\t\t f = has final method,\n" + "\t\t W = methods rewritten,\n" + "\t\t C = marked with @Contended annotation,\n" + "\t\t R = has been redefined,\n" + "\t\t S = is an (App)CDS shared class,\n" + "\t\t (if -location is also specified, (either) 's' indicating static (or) 'd' indicating dynamic AOT cache locations, are appended)\n\t", "BOOLEAN", false, "false"), _location("-location", "Print class file location url (if available)", "BOOLEAN", false, "false") { _dcmdparser.add_dcmd_option(&_verbose);