< prev index next >

src/share/vm/runtime/arguments.hpp

Print this page

        

@@ -732,15 +732,15 @@
   static void check_unsupported_dumping_properties() NOT_CDS_RETURN;
 };
 
 // Disable options not supported in this release, with a warning if they
 // were explicitly requested on the command-line
-#define UNSUPPORTED_OPTION(opt, description)                    \
+#define UNSUPPORTED_OPTION(opt)                          \
 do {                                                            \
   if (opt) {                                                    \
     if (FLAG_IS_CMDLINE(opt)) {                                 \
-      warning(description " is disabled in this release.");     \
+      warning("-XX:+" #opt " not supported in this VM"); \
     }                                                           \
     FLAG_SET_DEFAULT(opt, false);                               \
   }                                                             \
 } while(0)
 
< prev index next >