8191132: assert condition should not be in quotes

Remove bogus double quotation marks

Reviewed-by: coleenp
This commit is contained in:
Harold Seigel 2017-11-14 14:05:34 -05:00
parent 85dc1c0776
commit b70a8ea0f4

View file

@ -440,7 +440,7 @@ bool ConstantPoolCacheEntry::save_and_throw_indy_exc(
Symbol* error = PENDING_EXCEPTION->klass()->name();
Symbol* message = java_lang_Throwable::detail_message(PENDING_EXCEPTION);
assert("message != NULL", "Missing detail message");
assert(message != NULL, "Missing detail message");
SystemDictionary::add_resolution_error(cpool, index, error, message);
set_indy_resolution_failed();