comparison src/share/vm/classfile/classFileParser.cpp @ 17477:0611ce949aaa

Merge
author kizune
date Tue, 03 Dec 2013 14:13:06 +0400
parents 6795fcebbf42 fce21ac5968d
children e254e5940c19
comparison
equal deleted inserted replaced
17476:c31f0cbe6d9e 17477:0611ce949aaa
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.