comparison src/share/vm/classfile/classFileParser.cpp @ 12924:1a93f2c5945a

Merge
author lana
date Thu, 17 Oct 2013 14:20:57 -0700
parents 8321dcc18438 ac9cb1d5a202
children fce21ac5968d 6795fcebbf42
comparison
equal deleted inserted replaced
12923:8321dcc18438 12924:1a93f2c5945a
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 && !access_flags.is_interface() ) {
4084 local_interfaces->length() > 0) {
4085 DefaultMethods::generate_default_methods( 4084 DefaultMethods::generate_default_methods(
4086 this_klass(), &all_mirandas, CHECK_(nullHandle)); 4085 this_klass(), &all_mirandas, CHECK_(nullHandle));
4087 } 4086 }
4088 4087
4089 // Update the loader_data graph. 4088 // Update the loader_data graph.