Skip to content
Snippets Groups Projects
Commit adaecd4f authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

removed unnecessary throw

parent 4255f793
No related branches found
No related tags found
No related merge requests found
......@@ -50,8 +50,7 @@ abstract class AbstractRunnableStage implements Runnable {
} while (!stage.shouldBeTerminated());
} catch (TerminateException e) {
this.stage.terminate();
stage.owningContext.getThreadService().onTerminate();
throw e; // FIXME: Still needed?
stage.owningContext.abortConfigurationRun();
} finally {
afterStageExecution();
}
......
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