From d270ac334598e2a6e14950eb914cec96543f77e3 Mon Sep 17 00:00:00 2001 From: dsyer Date: Fri, 22 Aug 2008 09:26:01 +0000 Subject: [PATCH] OPEN - issue BATCH-771: Refactor Listeners for chunk changes Remove unused methods from StepExecution --- .../batch/core/StepExecution.java | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/StepExecution.java b/spring-batch-core/src/main/java/org/springframework/batch/core/StepExecution.java index d762d9f80..dd400fe02 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/StepExecution.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/StepExecution.java @@ -347,24 +347,6 @@ public class StepExecution extends Entity { public void incrementCommitCount() { commitCount++; } - - /** - * Increment the number of items skipped on read - * - * @param count - the number of skips to increment by. - */ - public void incrementReadSkipCountBy(int count) { - readSkipCount += count; - } - - /** - * Increment the number of items skipped on write - * - * @param count - the number of skips to increment by. - */ - public void incrementWriteSkipCountBy(int count) { - writeSkipCount += count; - } /** * Convenience method to get the current job parameters.