(MethodHookParam param)
| 36 | Objects.requireNonNull(method, "method == null"); |
| 37 | XposedBridge.hookMethod(method, new XC_MethodHook(priority) { |
| 38 | @Override |
| 39 | protected void afterHookedMethod(MethodHookParam param) throws Throwable { |
| 40 | try { |
| 41 | if (this0.isEnabled()) { |
| 42 | afterHookedMethod.afterHookedMethod(param); |
| 43 | } |
| 44 | } catch (Throwable e) { |
| 45 | this0.logError(e); |
| 46 | throw e; |
| 47 | } |
| 48 | } |
| 49 | }); |
| 50 | } |
| 51 |
nothing calls this directly
no test coverage detected