From 8efa6124807a2f28fd1dfb12a21606bc258cfb46 Mon Sep 17 00:00:00 2001 From: dsyer Date: Fri, 9 Jul 2010 10:56:45 +0000 Subject: [PATCH] BATCH-1594: remove non-existent override method --- .../listener/MulticasterBatchListenerTests.java | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/spring-batch-core/src/test/java/org/springframework/batch/core/listener/MulticasterBatchListenerTests.java b/spring-batch-core/src/test/java/org/springframework/batch/core/listener/MulticasterBatchListenerTests.java index 8c13ec6d2..8bf4f7cc6 100644 --- a/spring-batch-core/src/test/java/org/springframework/batch/core/listener/MulticasterBatchListenerTests.java +++ b/spring-batch-core/src/test/java/org/springframework/batch/core/listener/MulticasterBatchListenerTests.java @@ -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) *