Skip to content

Commit f88dc00

Browse files
committed
don't skip phantom classes
1 parent 0cbb74b commit f88dc00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

soot-infoflow/src/soot/jimple/infoflow/sourcesSinks/manager/BaseSourceSinkManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public Collection<SootClass> load(SootClass sc) throws Exception {
122122
Hierarchy h = Scene.v().getActiveHierarchy();
123123

124124
// Don't try to find sources or sinks in irrelevant classes
125-
if (sc.isPhantom() || sc.hasTag(SimulatedCodeElementTag.TAG_NAME))
125+
if (sc.hasTag(SimulatedCodeElementTag.TAG_NAME))
126126
return Collections.emptySet();
127127

128128
// For interfaces, we compute the transitive list of parent interfaces

0 commit comments

Comments
 (0)