From f06cf6009f90e7cb26673c943c8fb12809191a1c Mon Sep 17 00:00:00 2001 From: snazarki Date: Wed, 25 Dec 2019 02:53:58 +0000 Subject: [PATCH] 8236178: Debug build failed after 8236058 Reviewed-by: sgehwolf, andrew --- src/share/vm/oops/instanceKlass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/share/vm/oops/instanceKlass.cpp b/src/share/vm/oops/instanceKlass.cpp index 8f96915c5..4c973d38b 100644 --- a/src/share/vm/oops/instanceKlass.cpp +++ b/src/share/vm/oops/instanceKlass.cpp @@ -3605,7 +3605,7 @@ void InstanceKlass::set_init_state(ClassState state) { bool good_state = is_shared() ? (_init_state <= state) : (_init_state < state); assert(good_state || state == allocated, "illegal state transition"); - set_initialization_state_and_notify_implassert(_init_thread == NULL, "should be cleared before state change"); + assert(_init_thread == NULL, "should be cleared before state change"); _init_state = (u1)state; } #endif -- GitLab