# HG changeset patch # User jiangli # Date 1349980606 14400 # Node ID bbeecede56dde0163679c10c07df68757650f00e # Parent fb19af007ffc5823de2b16dbce27a9a820c3bb5b 8000459: assert(java_lang_String::is_instance(entry)) failure with various mlvm tests. Summary: Remove unneeded assert. Reviewed-by: sspitsyn, coleenp diff -r fb19af007ffc -r bbeecede56dd src/share/vm/prims/jvmtiTagMap.cpp --- a/src/share/vm/prims/jvmtiTagMap.cpp Wed Oct 10 14:35:58 2012 -0400 +++ b/src/share/vm/prims/jvmtiTagMap.cpp Thu Oct 11 14:36:46 2012 -0400 @@ -2862,9 +2862,8 @@ oop entry; if (tag.is_string()) { entry = pool->resolved_string_at(i); - // If the entry is non-null it it resolved. + // If the entry is non-null it is resolved. if (entry == NULL) continue; - assert(java_lang_String::is_instance(entry), "must be string"); } else { entry = Klass::cast(pool->resolved_klass_at(i))->java_mirror(); }