hotspot/src/share/vm/runtime/thread.cpp
changeset 14839 cda9ce5806b7
parent 14633 58caa6fc3b7c
child 14844 c92bd8f2109d
--- a/hotspot/src/share/vm/runtime/thread.cpp	Thu Dec 13 09:06:38 2012 -0800
+++ b/hotspot/src/share/vm/runtime/thread.cpp	Wed Dec 12 12:07:32 2012 -0800
@@ -3527,11 +3527,12 @@
       java_lang_Thread::set_thread_status(thread_object,
                                           java_lang_Thread::RUNNABLE);
 
-      // The VM preresolve methods to these classes. Make sure that get initialized
+      // The VM creates & returns objects of this class. Make sure it's initialized.
+      initialize_class(vmSymbols::java_lang_Class(), CHECK_0);
+
+      // The VM preresolves methods to these classes. Make sure that they get initialized
       initialize_class(vmSymbols::java_lang_reflect_Method(), CHECK_0);
       initialize_class(vmSymbols::java_lang_ref_Finalizer(),  CHECK_0);
-      // The VM creates & returns objects of this class. Make sure it's initialized.
-      initialize_class(vmSymbols::java_lang_Class(), CHECK_0);
       call_initializeSystemClass(CHECK_0);
 
       // get the Java runtime name after java.lang.System is initialized