Commit bf2c84bb authored by swift_gan's avatar swift_gan

fix error flag

parent 5b8585d4
...@@ -149,7 +149,7 @@ public class SandHook { ...@@ -149,7 +149,7 @@ public class SandHook {
} }
public static Object callOriginMethod(Member originMethod, Method backupMethod, Object thiz, Object[] args) throws Throwable { public static Object callOriginMethod(Member originMethod, Method backupMethod, Object thiz, Object[] args) throws Throwable {
return callOriginMethod(false, originMethod, backupMethod, thiz, args); return callOriginMethod(true, originMethod, backupMethod, thiz, args);
} }
public static Object callOriginMethod(boolean backupIsStub, Member originMethod, Method backupMethod, Object thiz, Object[] args) throws Throwable { public static Object callOriginMethod(boolean backupIsStub, Member originMethod, Method backupMethod, Object thiz, Object[] args) throws Throwable {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment