File tree 3 files changed +0
-6
lines changed
spring-batch-docs/asciidoc
3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,6 @@ public Job footballJob() {
76
76
.start(playerLoad())
77
77
.next(gameLoad())
78
78
.next(playerSummarization())
79
- .end()
80
79
.build();
81
80
}
82
81
----
@@ -111,7 +110,6 @@ public Job footballJob() {
111
110
.start(playerLoad())
112
111
.next(gameLoad())
113
112
.next(playerSummarization())
114
- .end()
115
113
.build();
116
114
}
117
115
----
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ public Job footballJob() {
41
41
.start(playerLoad())
42
42
.next(gameLoad())
43
43
.next(playerSummarization())
44
- .end()
45
44
.build();
46
45
}
47
46
----
@@ -109,7 +108,6 @@ public Job footballJob() {
109
108
.start(playerLoad())
110
109
.next(gameLoad())
111
110
.next(playerSummarization())
112
- .end()
113
111
.build();
114
112
}
115
113
----
Original file line number Diff line number Diff line change @@ -344,7 +344,6 @@ value of 10.
344
344
public Job sampleJob() {
345
345
return this.jobBuilderFactory.get("sampleJob")
346
346
.start(step1())
347
- .end()
348
347
.build();
349
348
}
350
349
@@ -482,7 +481,6 @@ public Job footballJob() {
482
481
.start(playerLoad())
483
482
.next(gameLoad())
484
483
.next(playerSummarization())
485
- .end()
486
484
.build();
487
485
}
488
486
You can’t perform that action at this time.
0 commit comments