Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Hook all super class methods
Browse files Browse the repository at this point in the history
Refs #1366
  • Loading branch information
M66B committed Feb 19, 2014
1 parent 4af827b commit 7bbbe40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/biz/bokhorst/xprivacy/XPrivacy.java
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ protected void afterHookedMethod(MethodHookParam param) throws Throwable {
// if (isNative)
// registerNativeMethod(hook, method, unhook);
}
clazz = (hookSet.isEmpty() ? clazz.getSuperclass() : null);
clazz = clazz.getSuperclass();
}

// Check if found
Expand Down

0 comments on commit 7bbbe40

Please sign in to comment.