hotspot/src/share/vm/classfile/classFileParser.cpp
changeset 25326 85b2f2e63e3e
parent 25325 e3af4e02b0d5
child 25470 4e69740b1547
equal deleted inserted replaced
25325:e3af4e02b0d5 25326:85b2f2e63e3e
  4137         check_illegal_static_method(this_klass, CHECK_(nullHandle));
  4137         check_illegal_static_method(this_klass, CHECK_(nullHandle));
  4138       }
  4138       }
  4139     }
  4139     }
  4140 
  4140 
  4141     // Allocate mirror and initialize static fields
  4141     // Allocate mirror and initialize static fields
  4142     java_lang_Class::create_mirror(this_klass, protection_domain, CHECK_(nullHandle));
  4142     java_lang_Class::create_mirror(this_klass, class_loader, protection_domain,
  4143 
  4143                                    CHECK_(nullHandle));
  4144 
  4144 
  4145     // Generate any default methods - default methods are interface methods
  4145     // Generate any default methods - default methods are interface methods
  4146     // that have a default implementation.  This is new with Lambda project.
  4146     // that have a default implementation.  This is new with Lambda project.
  4147     if (has_default_methods ) {
  4147     if (has_default_methods ) {
  4148       DefaultMethods::generate_default_methods(
  4148       DefaultMethods::generate_default_methods(