< prev index next >

src/hotspot/share/prims/nativeLookup.cpp

Print this page

        

@@ -436,11 +436,11 @@
   Klass* k = SystemDictionary::resolve_or_fail(c_name, true, CATCH);
   InstanceKlass* klass  = InstanceKlass::cast(k);
 
   // Find method and invoke standard lookup
   methodHandle method (THREAD,
-                       klass->uncached_lookup_method(m_name, s_name, Klass::find_overpass));
+                       klass->uncached_lookup_method(m_name, s_name, Klass::OverpassLookupMode::find_overpass));
   address result = lookup(method, in_base_library, CATCH);
   assert(in_base_library, "must be in basic library");
   guarantee(result != NULL, "must be non NULL");
   return result;
 }
< prev index next >