Skip to content
Snippets Groups Projects
Commit c90c1c34 authored by Christian Wulf's avatar Christian Wulf
Browse files

removed comments

parent 36f88d59
Branches
Tags
No related merge requests found
......@@ -73,7 +73,7 @@ public class WorkerThread extends Thread {
// beforeStageExecutionStopWatch.end();
this.startStageExecution(stage);
// stageExecutionStopWatch.start(); // expensive: takes 1/3 of overall time
// stageExecutionStopWatch.start();
final boolean executedSuccessfully = stage.execute();
// stageExecutionStopWatch.end();
this.finishStageExecution(stage, executedSuccessfully);
......
......@@ -178,7 +178,7 @@ public abstract class AbstractFilter<S extends IStage> extends AbstractStage imp
@Override
public void onPortIsClosed(final IInputPort<S, ?> inputPort) {
// inputPort.setState(IInputPort.State.CLOSING);
this.enabledInputPorts--;
this.enabledInputPorts--; // FIXME not thread-safe
// this.logger.info("Closed " + "(" + this.enabledInputPorts + " remaining) " + inputPort + " of " + this);
if (this.enabledInputPorts < 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment