OpenJDK / portola / portola
changeset 47890:2219a502fd45
8191132: assert condition should not be in quotes
Summary: Remove bogus double quotation marks
Reviewed-by: coleenp
author | hseigel |
---|---|
date | Tue, 14 Nov 2017 14:05:34 -0500 |
parents | 839a3b403a5e |
children | fa736014cf28 |
files | src/hotspot/share/oops/cpCache.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/hotspot/share/oops/cpCache.cpp Tue Nov 14 16:45:27 2017 +0100 +++ b/src/hotspot/share/oops/cpCache.cpp Tue Nov 14 14:05:34 2017 -0500 @@ -440,7 +440,7 @@ 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();