Remove an apparently-useless no-op walk over elements of a set

This commit is contained in:
Ben Liblit 2017-11-22 14:36:00 -06:00
parent 2e084bdec7
commit 16913ffc80
1 changed files with 1 additions and 6 deletions

View File

@ -60,12 +60,7 @@ public class TracingFlowFunction implements IUnaryFlowFunction {
@Override
public IntSet getTargets(int d1) {
IntSet result = function.getTargets(d1);
result.foreach(x -> {
});
return result;
return function.getTargets(d1);
}
}