Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Added missing parameter to Javadoc of findAndHookMethod() #143

Open
wants to merge 1 commit into
base: art
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public static XC_MethodHook.Unhook findAndHookMethod(Class<?> clazz, String meth
* }
*
* // ... you can use this call:
* findAndHookMethod("com.example.SomeClass", lpparam.classLoader, String.class, int.class, "com.example.MyClass", new XC_MethodHook() {
* findAndHookMethod("com.example.SomeClass", lpparam.classLoader, "doSomething", String.class, int.class, "com.example.MyClass", new XC_MethodHook() {
* &#64;Override
* protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
* String oldText = (String) param.args[0];
Expand Down