OPEN - issue BATCH-771: Refactor Listeners for chunk changes

Remove unused methods from StepExecution
This commit is contained in:
dsyer
2008-08-22 09:26:01 +00:00
parent 90be802313
commit d270ac3345

View File

@@ -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.