Skip to content

Commit

Permalink
Merge pull request #4735 from jdmpapin/getMethodFromName-callingMethod
Browse files Browse the repository at this point in the history
Remove callingMethod from getMethodFromName()
  • Loading branch information
0xdaryl authored Feb 14, 2019
2 parents ca17a83 + 84afed1 commit 46a2fba
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions runtime/compiler/env/VMJ9.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6684,12 +6684,6 @@ TR_J9VMBase::getClassDepthAndFlagsValue(TR_OpaqueClassBlock * classPointer)
#define LOOKUP_OPTION_NO_CLIMB 32
#define LOOKUP_OPTION_NO_THROW 8192

TR_OpaqueMethodBlock *
TR_J9VM::getMethodFromName(char *className, char *methodName, char *signature, TR_OpaqueMethodBlock *callingMethod)
{
return getMethodFromName(className, methodName, signature); // ignore callingMethod
}

TR_OpaqueMethodBlock *
TR_J9VM::getMethodFromName(char *className, char *methodName, char *signature)
{
Expand Down
1 change: 0 additions & 1 deletion runtime/compiler/env/VMJ9.h
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,6 @@ class TR_J9VM : public TR_J9VMBase
virtual void initializeHasFixedFrameC_CallingConvention();

virtual bool isPublicClass(TR_OpaqueClassBlock *clazz);
virtual TR_OpaqueMethodBlock *getMethodFromName(char * className, char *methodName, char *signature, TR_OpaqueMethodBlock *callingMethod);
virtual TR_OpaqueMethodBlock *getMethodFromName(char * className, char *methodName, char *signature);

virtual TR_OpaqueClassBlock * getComponentClassFromArrayClass(TR_OpaqueClassBlock * arrayClass);
Expand Down

0 comments on commit 46a2fba

Please sign in to comment.