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

removed comments

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