--- old/src/share/vm/oops/arrayKlass.cpp 2014-03-31 12:04:02.341904000 -0400 +++ new/src/share/vm/oops/arrayKlass.cpp 2014-03-31 12:04:01.068707000 -0400 @@ -64,10 +64,10 @@ return NULL; } -Method* ArrayKlass::uncached_lookup_method(Symbol* name, Symbol* signature) const { +Method* ArrayKlass::uncached_lookup_method(Symbol* name, Symbol* signature, bool ignore_overpass) const { // There are no methods in an array klass but the super class (Object) has some assert(super(), "super klass must be present"); - return super()->uncached_lookup_method(name, signature); + return super()->uncached_lookup_method(name, signature, ignore_overpass); } ArrayKlass::ArrayKlass(Symbol* name) {