comparison src/share/vm/oops/instanceKlass.cpp @ 12828:d25557d03ec0

8026185: nsk/jvmit/GetMethodDeclaringClass/declcls001 failed Summary: Missed initialization. Thanks Coleen. Reviewed-by: coleenp, minqi
author acorn
date Wed, 09 Oct 2013 17:57:17 -0400
parents ac9cb1d5a202
children d37a0525c0fe
comparison
equal deleted inserted replaced
12827:c72075c2883e 12828:d25557d03ec0
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) {