mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8026185: nsk/jvmit/GetMethodDeclaringClass/declcls001 failed
Missed initialization. Thanks Coleen. Reviewed-by: coleenp, minqi
This commit is contained in:
parent
920880a243
commit
1514de31eb
1 changed files with 1 additions and 1 deletions
|
@ -1458,7 +1458,7 @@ Method* InstanceKlass::uncached_lookup_method(Symbol* name, Symbol* signature) c
|
||||||
// Do NOT return private or static methods
|
// Do NOT return private or static methods
|
||||||
Method* InstanceKlass::lookup_method_in_ordered_interfaces(Symbol* name,
|
Method* InstanceKlass::lookup_method_in_ordered_interfaces(Symbol* name,
|
||||||
Symbol* signature) const {
|
Symbol* signature) const {
|
||||||
Method* m;
|
Method* m = NULL;
|
||||||
if (default_methods() != NULL) {
|
if (default_methods() != NULL) {
|
||||||
m = find_method(default_methods(), name, signature);
|
m = find_method(default_methods(), name, signature);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue