From 827f2a9c61e59c8dcf564af05640ab4216e2f3ef Mon Sep 17 00:00:00 2001 From: lucasward Date: Thu, 9 Oct 2008 04:58:04 +0000 Subject: [PATCH] OPEN - issue BATCH-767: Update documentation for M2 http://jira.springframework.org/browse/BATCH-767 First pass through chapters 2, 3 and Appendix A. --- .../batch/sample/common/CustomItemReaderTests.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-batch-samples/src/test/java/org/springframework/batch/sample/common/CustomItemReaderTests.java b/spring-batch-samples/src/test/java/org/springframework/batch/sample/common/CustomItemReaderTests.java index 5eb484d78..bf9d69e86 100644 --- a/spring-batch-samples/src/test/java/org/springframework/batch/sample/common/CustomItemReaderTests.java +++ b/spring-batch-samples/src/test/java/org/springframework/batch/sample/common/CustomItemReaderTests.java @@ -24,7 +24,6 @@ import org.springframework.batch.item.ExecutionContext; import org.springframework.batch.item.ItemReader; import org.springframework.batch.item.ItemStream; import org.springframework.batch.item.ItemStreamException; -import org.springframework.batch.item.NoWorkFoundException; import org.springframework.batch.item.ParseException; import org.springframework.batch.item.UnexpectedInputException; @@ -88,7 +87,7 @@ public class CustomItemReaderTests extends TestCase { } public T read() throws Exception, UnexpectedInputException, - NoWorkFoundException, ParseException { + ParseException { if (currentIndex < items.size()) { return items.get(currentIndex++);