--- old/src/hotspot/share/oops/klass.hpp 2018-06-20 00:51:00.127240516 -0400 +++ new/src/hotspot/share/oops/klass.hpp 2018-06-20 00:50:58.339137566 -0400 @@ -467,7 +467,9 @@ // lookup operation for MethodLookupCache friend class MethodLookupCache; virtual Klass* find_field(Symbol* name, Symbol* signature, fieldDescriptor* fd) const; - virtual Method* uncached_lookup_method(const Symbol* name, const Symbol* signature, OverpassLookupMode overpass_mode) const; + virtual Method* uncached_lookup_method(const Symbol* name, const Symbol* signature, + OverpassLookupMode overpass_mode, + PrivateLookupMode = find_private) const; public: Method* lookup_method(const Symbol* name, const Symbol* signature) const { return uncached_lookup_method(name, signature, find_overpass);