We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d46a3e commit 7948734Copy full SHA for 7948734
app/src/main/java/com/wmods/wppenhacer/xposed/utils/DebugUtils.java
@@ -70,7 +70,7 @@ public static void debugArgs(Object[] args) {
70
public static void debugMethods(Class<?> cls, Object thisObject) {
71
XposedBridge.log("DEBUG METHODS: Class " + cls.getName());
72
for (var method : cls.getDeclaredMethods()) {
73
- if (method.getParameterCount() > 0) continue;
+ if (method.getParameterCount() > 0 || method.getReturnType() == void.class) continue;
74
try {
75
method.setAccessible(true);
76
XposedBridge.log("METHOD: " + method.getName() + " -> VALUE: " + method.invoke(thisObject));
0 commit comments