diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/listener/StepListenerSupport.java b/spring-batch-core/src/main/java/org/springframework/batch/core/listener/StepListenerSupport.java index 083decf2a..956c1a108 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/listener/StepListenerSupport.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/listener/StepListenerSupport.java @@ -37,25 +37,18 @@ public class StepListenerSupport implements StepExecutionListener, ChunkLis ItemReadListener, ItemProcessListener, ItemWriteListener, SkipListener { /* (non-Javadoc) - * @see org.springframework.batch.core.domain.StepListener#afterStep(StepExecution stepExecution) + * @see org.springframework.batch.core.StepExecutionListener#afterStep(org.springframework.batch.core.StepExecution) */ public ExitStatus afterStep(StepExecution stepExecution) { return null; } /* (non-Javadoc) - * @see org.springframework.batch.core.domain.StepListener#beforeStep(org.springframework.batch.core.domain.StepExecution) + * @see org.springframework.batch.core.StepExecutionListener#beforeStep(org.springframework.batch.core.StepExecution) */ public void beforeStep(StepExecution stepExecution) { } - /* (non-Javadoc) - * @see org.springframework.batch.core.domain.StepListener#onErrorInStep(java.lang.Throwable) - */ - public ExitStatus onErrorInStep(StepExecution stepExecution, Throwable e) { - return null; - } - /* (non-Javadoc) * @see org.springframework.batch.core.domain.ChunkListener#afterChunk() */