src/hotspot/share/oops/instanceKlass.cpp
changeset 51334 cc2c79d22508
parent 51329 9c68699bebe5
child 51338 aa3bfacc912c
--- a/src/hotspot/share/oops/instanceKlass.cpp	Wed Aug 08 15:31:06 2018 +0200
+++ b/src/hotspot/share/oops/instanceKlass.cpp	Wed Aug 08 15:31:07 2018 +0200
@@ -402,13 +402,13 @@
 
 InstanceKlass::InstanceKlass(const ClassFileParser& parser, unsigned kind, KlassID id) :
   Klass(id),
+  _nest_members(NULL),
+  _nest_host_index(0),
+  _nest_host(NULL),
   _static_field_size(parser.static_field_size()),
   _nonstatic_oop_map_size(nonstatic_oop_map_size(parser.total_oop_map_count())),
   _itable_len(parser.itable_size()),
-  _reference_type(parser.reference_type()),
-  _nest_members(NULL),
-  _nest_host_index(0),
-  _nest_host(NULL) {
+  _reference_type(parser.reference_type()) {
     set_vtable_length(parser.vtable_size());
     set_kind(kind);
     set_access_flags(parser.access_flags());