RESOLVED - issue BATCH-526: RepeatTemplate#start(..) should be private/protected

http://jira.springframework.org/browse/BATCH-526

changed visibility to protected (same as isComplete(..) and update(..).
This commit is contained in:
robokaso
2008-03-28 15:00:11 +00:00
parent 2cf48e09fa
commit 43a61dac13

View File

@@ -438,7 +438,7 @@ public class RepeatTemplate implements RepeatOperations {
*
* @see org.springframework.batch.repeat.CompletionPolicy#start(RepeatContext)
*/
public RepeatContext start() {
protected RepeatContext start() {
RepeatContext parent = RepeatSynchronizationManager.getContext();
RepeatContext context = completionPolicy.start(parent);
RepeatSynchronizationManager.register(context);