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 @@ -77,7 +77,6 @@ public Job footballJob() {
77
77
.start(playerLoad())
78
78
.next(gameLoad())
79
79
.next(playerSummarization())
80
- .end()
81
80
.build();
82
81
}
83
82
----
@@ -113,7 +112,6 @@ public Job footballJob() {
113
112
.start(playerLoad())
114
113
.next(gameLoad())
115
114
.next(playerSummarization())
116
- .end()
117
115
.build();
118
116
}
119
117
----
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
----
@@ -106,7 +105,6 @@ public Job footballJob() {
106
105
.start(playerLoad())
107
106
.next(gameLoad())
108
107
.next(playerSummarization())
109
- .end()
110
108
.build();
111
109
}
112
110
----
Original file line number Diff line number Diff line change @@ -352,7 +352,6 @@ value of 10 as it would be defined in Java:
352
352
public Job sampleJob() {
353
353
return this.jobBuilderFactory.get("sampleJob")
354
354
.start(step1())
355
- .end()
356
355
.build();
357
356
}
358
357
@@ -507,7 +506,6 @@ public Job footballJob() {
507
506
.start(playerLoad())
508
507
.next(gameLoad())
509
508
.next(playerSummarization())
510
- .end()
511
509
.build();
512
510
}
513
511
You can’t perform that action at this time.
0 commit comments