hotspot/src/share/vm/oops/instanceKlass.cpp
changeset 20396 0ed0e7aa1ed8
parent 20391 7b146c5ebb18
child 20684 057f5443edab
equal deleted inserted replaced
20395:55915f609319 20396:0ed0e7aa1ed8
  1456 
  1456 
  1457 // lookup a method in the default methods list then in all transitive interfaces
  1457 // lookup a method in the default methods list then in all transitive interfaces
  1458 // Do NOT return private or static methods
  1458 // Do NOT return private or static methods
  1459 Method* InstanceKlass::lookup_method_in_ordered_interfaces(Symbol* name,
  1459 Method* InstanceKlass::lookup_method_in_ordered_interfaces(Symbol* name,
  1460                                                          Symbol* signature) const {
  1460                                                          Symbol* signature) const {
  1461   Method* m;
  1461   Method* m = NULL;
  1462   if (default_methods() != NULL) {
  1462   if (default_methods() != NULL) {
  1463     m = find_method(default_methods(), name, signature);
  1463     m = find_method(default_methods(), name, signature);
  1464   }
  1464   }
  1465   // Look up interfaces
  1465   // Look up interfaces
  1466   if (m == NULL) {
  1466   if (m == NULL) {