Skip to content

Commit c160818

Browse files
committed
Remove debug code
1 parent 282c9aa commit c160818

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

soot-infoflow/src/soot/jimple/infoflow/problems/InfoflowProblem.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,7 @@ public FlowFunction<Abstraction> getReturnFlowFunction(final Unit callSite, fina
501501
public Set<Abstraction> computeTargets(Abstraction source, Abstraction d1,
502502
Collection<Abstraction> callerD1s) {
503503
Set<Abstraction> res = computeTargetsInternal(source, d1, callerD1s);
504+
504505
return notifyOutFlowHandlers(exitStmt, d1, source, res, FlowFunctionType.ReturnFlowFunction);
505506
}
506507

@@ -511,9 +512,6 @@ private Set<Abstraction> computeTargetsInternal(Abstraction source, Abstraction
511512
if (source == getZeroValue())
512513
return null;
513514

514-
if (callee.getName().equals("sendMessage"))
515-
System.out.println("x");
516-
517515
// Notify the handler if we have one
518516
if (taintPropagationHandler != null)
519517
taintPropagationHandler.notifyFlowIn(exitStmt, source, manager,

0 commit comments

Comments
 (0)