From 30e02ce948b5f1eb94d21d932c97dbd53b4412dc Mon Sep 17 00:00:00 2001 From: "Daniel D. Daugherty" Date: Tue, 23 Mar 2010 14:37:18 -0700 Subject: [PATCH] 6915365: 3/4 assert(false,"Unsupported VMGlobal Type") at management.cpp:1540 Remove assert to decouple JDK and HotSpot additions of known types. Reviewed-by: mchung --- hotspot/src/share/vm/services/management.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/hotspot/src/share/vm/services/management.cpp b/hotspot/src/share/vm/services/management.cpp index c764ace7450..c6499028544 100644 --- a/hotspot/src/share/vm/services/management.cpp +++ b/hotspot/src/share/vm/services/management.cpp @@ -1537,7 +1537,6 @@ bool add_global_entry(JNIEnv* env, Handle name, jmmVMGlobal *global, Flag *flag, global->type = JMM_VMGLOBAL_TYPE_JSTRING; } else { global->type = JMM_VMGLOBAL_TYPE_UNKNOWN; - assert(false, "Unsupported VMGlobal Type"); return false; }