BATCH-1594: remove non-existent override method

This commit is contained in:
dsyer
2010-07-09 10:56:45 +00:00
parent 6aa92efa14
commit 8efa612480

View File

@@ -648,22 +648,6 @@ public class MulticasterBatchListenerTests {
super.beforeWrite(items);
}
/*
* (non-Javadoc)
*
* @see
* org.springframework.batch.core.listener.StepListenerSupport#onErrorInStep
* (org.springframework.batch.core.StepExecution, java.lang.Throwable)
*/
@Override
public ExitStatus onErrorInStep(StepExecution stepExecution, Throwable e) {
count++;
if (error) {
throw new RuntimeException("listener error");
}
return super.onErrorInStep(stepExecution, e);
}
/*
* (non-Javadoc)
*