src/hotspot/share/runtime/arguments.cpp
changeset 48868 f0981646b6c6
parent 48859 5a4d08efbad9
parent 48745 74be5b4ed152
child 48885 00e159258897
--- a/src/hotspot/share/runtime/arguments.cpp	Tue Feb 06 14:11:47 2018 +0530
+++ b/src/hotspot/share/runtime/arguments.cpp	Mon Feb 05 23:12:03 2018 +0100
@@ -730,7 +730,8 @@
       // if flag has become obsolete it should not have a "globals" flag defined anymore.
       if (!version_less_than(JDK_Version::current(), flag.obsolete_in)) {
         if (Flag::find_flag(flag.name) != NULL) {
-          warning("Global variable for obsolete special flag entry \"%s\" should be removed", flag.name);
+          // Temporarily disable the warning: 8196739
+          // warning("Global variable for obsolete special flag entry \"%s\" should be removed", flag.name);
         }
       }
     }
@@ -739,7 +740,8 @@
       // if flag has become expired it should not have a "globals" flag defined anymore.
       if (!version_less_than(JDK_Version::current(), flag.expired_in)) {
         if (Flag::find_flag(flag.name) != NULL) {
-          warning("Global variable for expired flag entry \"%s\" should be removed", flag.name);
+          // Temporarily disable the warning: 8196739
+          // warning("Global variable for expired flag entry \"%s\" should be removed", flag.name);
         }
       }
     }