6915365: 3/4 assert(false,"Unsupported VMGlobal Type") at management.cpp:1540
Summary: Remove assert to decouple JDK and HotSpot additions of known types.
Reviewed-by: mchung
--- a/hotspot/src/share/vm/services/management.cpp Wed Jul 05 17:07:54 2017 +0200
+++ b/hotspot/src/share/vm/services/management.cpp Tue Mar 23 14:37:18 2010 -0700
@@ -1537,7 +1537,6 @@
global->type = JMM_VMGLOBAL_TYPE_JSTRING;
} else {
global->type = JMM_VMGLOBAL_TYPE_UNKNOWN;
- assert(false, "Unsupported VMGlobal Type");
return false;
}