From 7be9bc68236bb98a189ddd47df5cf764fc411880 Mon Sep 17 00:00:00 2001 From: robokaso Date: Tue, 29 Apr 2008 14:02:55 +0000 Subject: [PATCH] javadoc fix (task -> item) --- .../org/springframework/batch/core/StepContribution.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/StepContribution.java b/spring-batch-core/src/main/java/org/springframework/batch/core/StepContribution.java index 4bbd2af77..6ea7515d7 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/StepContribution.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/StepContribution.java @@ -42,16 +42,16 @@ public class StepContribution { } /** - * Increment the counter for the number of tasks executed. + * Increment the counter for the number of items processed. */ public void incrementItemCount() { itemCount++; } /** - * Public access to the task execution counter. + * Public access to the item counter. * - * @return the task execution counter. + * @return the item counter. */ public int getItemCount() { return itemCount;