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

removed duplicated state

parent fa042034
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ public abstract class AbstractStage extends Stage {
private InputPort<?>[] inputPorts = new InputPort<?>[0];
private OutputPort<?>[] outputPorts = new OutputPort<?>[0];
private StageState currentState = StageState.NOT_INITIALIZED;
private StageState currentState = StageState.CREATED;
@Override
public InputPort<?>[] getInputPorts() {
......
......@@ -17,9 +17,8 @@ package teetime.framework;
public enum StageState {
NOT_INITIALIZED,
INITIALIZED,
CREATED,
INITIALIZED,
VALIDATING, VALIDATED,
STARTING, STARTED,
TERMINATING, TERMINATED
......
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