BATCH-1537: call super.open() after setting startAfter

This commit is contained in:
dsyer
2010-03-26 12:16:34 +00:00
parent 43b72a8150
commit f6c9ffd07e

View File

@@ -233,10 +233,10 @@ public class JdbcPagingItemReader<T> extends AbstractPagingItemReader<T> impleme
@Override
public void open(ExecutionContext executionContext) {
super.open(executionContext);
if (isSaveState()) {
startAfterValue = executionContext.get(getExecutionContextUserSupport().getKey(START_AFTER_VALUE));
}
super.open(executionContext);
}
@Override