From 6aa92efa14e8ddb5a7f1fabefa2fd492ed9739fb Mon Sep 17 00:00:00 2001 From: dsyer Date: Fri, 9 Jul 2010 10:54:08 +0000 Subject: [PATCH] BATCH-1594: remove non-existent override method --- .../batch/core/listener/StepListenerSupport.java | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) 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() */