diff --git a/dictionary.txt b/dictionary.txt index 3817d44d7..f8c084905 100644 --- a/dictionary.txt +++ b/dictionary.txt @@ -56,3 +56,4 @@ overriden backport mapper tx +skippable 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;