Skip to content

Commit

Permalink
Revert f3beb86
Browse files Browse the repository at this point in the history
  • Loading branch information
JingMatrix committed Sep 20, 2024
1 parent 45338ad commit b5b1c63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public static Class<?> findClass(String className, ClassLoader classLoader) {
if (classLoader == null)
classLoader = XposedBridge.BOOTCLASSLOADER;
try {
return classLoader.loadClass(className);
return ClassUtils.getClass(classLoader, className, false);
} catch (ClassNotFoundException e) {
throw new ClassNotFoundError(e);
}
Expand Down

0 comments on commit b5b1c63

Please sign in to comment.