From 15a450f121dc1022fbf7059ab92cc88dd6333088 Mon Sep 17 00:00:00 2001 From: robokaso Date: Fri, 19 Sep 2008 12:32:50 +0000 Subject: [PATCH] javadoc correction --- .../batch/item/support/AbstractItemReaderItemStream.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/AbstractItemReaderItemStream.java b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/AbstractItemReaderItemStream.java index 5a2ad976f..1b353961a 100644 --- a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/AbstractItemReaderItemStream.java +++ b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/AbstractItemReaderItemStream.java @@ -11,10 +11,9 @@ import org.springframework.batch.item.util.ExecutionContextUserSupport; import org.springframework.util.Assert; /** - * Abstract superclass for {@link ItemReader}s which use item buffering to - * support reset/rollback. Supports restart by storing item count in the - * {@link ExecutionContext} (therefore requires item ordering to be preserved - * between runs). + * Abstract superclass for {@link ItemReader}s that supports restart by storing + * item count in the {@link ExecutionContext} (therefore requires item ordering + * to be preserved between runs). * * Subclasses are inherently *not* thread-safe. * @@ -36,7 +35,7 @@ public abstract class AbstractItemReaderItemStream implements ItemReader, * @throws Exception */ protected abstract T doRead() throws Exception; - + /** * Open resources necessary to start reading input. */