From 7b26bc4f2e9ca14b08e7d813aca521fa8c14b992 Mon Sep 17 00:00:00 2001 From: dsyer Date: Mon, 11 Feb 2008 09:46:01 +0000 Subject: [PATCH] OPEN - issue BATCH-350: Remove close() method from non ItemStreams http://jira.springframework.org/browse/BATCH-350 Remove redundant close() method --- .../batch/execution/launch/EmptyItemWriter.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/spring-batch-execution/src/test/java/org/springframework/batch/execution/launch/EmptyItemWriter.java b/spring-batch-execution/src/test/java/org/springframework/batch/execution/launch/EmptyItemWriter.java index 5c6b9c996..2cec370ba 100644 --- a/spring-batch-execution/src/test/java/org/springframework/batch/execution/launch/EmptyItemWriter.java +++ b/spring-batch-execution/src/test/java/org/springframework/batch/execution/launch/EmptyItemWriter.java @@ -58,7 +58,4 @@ public class EmptyItemWriter implements ItemWriter, InitializingBean { return list; } - public void close() throws Exception { - } - }