Minor changes

This commit is contained in:
topjohnwu
2021-04-17 19:57:47 -07:00
parent 8b28baabd7
commit 7e01f9c95e
4 changed files with 10 additions and 10 deletions

View File

@@ -7,10 +7,7 @@ import java.io.File;
class InjectedClassLoader extends DynamicClassLoader {
InjectedClassLoader(File apk) {
super(apk,
/* Use the base classloader as we do not want stub
* APK classes accessible from the main app */
Object.class.getClassLoader());
super(apk);
}
@Override