File tree Expand file tree Collapse file tree
soot-infoflow-android/src/soot/jimple/infoflow/android/entryPointCreators Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -278,9 +278,9 @@ protected SootMethod createDummyMainInternal() {
278278 "java.lang.ClassLoader getClassLoader()" , false );
279279 applicationLocal = j .newLocal ("application" , RefType .v (AndroidEntryPointConstants .APPLICATIONCLASS ));
280280 body .getLocals ().add (applicationLocal );
281- String classAppl = applicationClass . getName () ;
282- if (classAppl = = null )
283- classAppl = "android.app.Application" ;
281+ String classAppl = "android.app.Application" ;
282+ if (applicationClass ! = null )
283+ classAppl = applicationClass . getName () ;
284284 Local clazzL = j .newLocal ("clazz" , RefType .v ("java.lang.Class" ));
285285 body .getLocals ().add (clazzL );
286286 Local classLoader = j .newLocal ("classLoader" , RefType .v ("java.lang.ClassLoader" ));
You can’t perform that action at this time.
0 commit comments