BATCH-1064: Small cleanup after BatchStatus changes

This commit is contained in:
dhgarrette
2009-02-13 23:58:19 +00:00
parent 32d34d78d2
commit 2b54b7c7e0
2 changed files with 1 additions and 6 deletions

View File

@@ -35,11 +35,6 @@ public class FlowExecutionStatus implements Comparable<FlowExecutionStatus> {
public static final FlowExecutionStatus COMPLETED = new FlowExecutionStatus(BatchStatus.COMPLETED,
ExitStatus.COMPLETED);
/**
* Special well-known status value.
*/
public static final FlowExecutionStatus STOPPED = new FlowExecutionStatus(BatchStatus.FAILED, ExitStatus.FAILED);
/**
* Special well-known status value.
*/

View File

@@ -58,7 +58,7 @@ public class EndState extends AbstractState {
/**
* Return the {@link BatchStatus} and {@link ExitStatus} stored. If the
* {@link BatchStatus} is {@link BatchStatus#FAILED}, then mark it on the
* {@link BatchStatus} is {@link BatchStatus#INCOMPLETE}, then mark it on the
* {@link JobExecution} so that the job will know to stop.
*
* @see State#handle(FlowExecutor)