Skip to content

Commit 16c3809

Browse files
committed
Fix isUserCodeClass(String className)
1 parent 534c30a commit 16c3809

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

soot-infoflow/src/soot/jimple/infoflow/Infoflow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ protected boolean isValidSeedMethod(SootMethod sm) {
11991199
* @return True if the given class is user code, false otherwise
12001200
*/
12011201
protected boolean isUserCodeClass(String className) {
1202-
return false;
1202+
return true;
12031203
}
12041204

12051205
/**

0 commit comments

Comments
 (0)