hotspot/src/share/vm/classfile/classFileParser.cpp
changeset 21556 e75cd34a59e0
parent 20670 4f5a54933d4d
child 21765 e2c19a9f1039
equal deleted inserted replaced
21555:2f66a8ee6265 21556:e75cd34a59e0
  4078     java_lang_Class::create_mirror(this_klass, protection_domain, CHECK_(nullHandle));
  4078     java_lang_Class::create_mirror(this_klass, protection_domain, CHECK_(nullHandle));
  4079 
  4079 
  4080 
  4080 
  4081     // Generate any default methods - default methods are interface methods
  4081     // Generate any default methods - default methods are interface methods
  4082     // that have a default implementation.  This is new with Lambda project.
  4082     // that have a default implementation.  This is new with Lambda project.
  4083     if (has_default_methods && !access_flags.is_interface() ) {
  4083     if (has_default_methods ) {
  4084       DefaultMethods::generate_default_methods(
  4084       DefaultMethods::generate_default_methods(
  4085           this_klass(), &all_mirandas, CHECK_(nullHandle));
  4085           this_klass(), &all_mirandas, CHECK_(nullHandle));
  4086     }
  4086     }
  4087 
  4087 
  4088     // Update the loader_data graph.
  4088     // Update the loader_data graph.