hotspot/src/share/vm/oops/arrayKlass.cpp
changeset 23999 22eb7be3d99d
parent 22794 f1c014ad3754
child 25326 85b2f2e63e3e
--- a/hotspot/src/share/vm/oops/arrayKlass.cpp	Mon Apr 14 10:13:03 2014 -0400
+++ b/hotspot/src/share/vm/oops/arrayKlass.cpp	Mon Apr 14 14:27:45 2014 -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, MethodLookupMode mode) 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, mode);
 }
 
 ArrayKlass::ArrayKlass(Symbol* name) {