Fix code examples in documentation
The changed code examples in this commit used the `.end()` method which does not exist in `SimpleStepBuilder`. Issue #3889
This commit is contained in:
committed by
Mahmoud Ben Hassine
parent
28e3f04626
commit
3a1e769945
@@ -76,7 +76,6 @@ public Job footballJob() {
|
||||
.start(playerLoad())
|
||||
.next(gameLoad())
|
||||
.next(playerSummarization())
|
||||
.end()
|
||||
.build();
|
||||
}
|
||||
----
|
||||
@@ -111,7 +110,6 @@ public Job footballJob() {
|
||||
.start(playerLoad())
|
||||
.next(gameLoad())
|
||||
.next(playerSummarization())
|
||||
.end()
|
||||
.build();
|
||||
}
|
||||
----
|
||||
|
||||
@@ -41,7 +41,6 @@ public Job footballJob() {
|
||||
.start(playerLoad())
|
||||
.next(gameLoad())
|
||||
.next(playerSummarization())
|
||||
.end()
|
||||
.build();
|
||||
}
|
||||
----
|
||||
@@ -109,7 +108,6 @@ public Job footballJob() {
|
||||
.start(playerLoad())
|
||||
.next(gameLoad())
|
||||
.next(playerSummarization())
|
||||
.end()
|
||||
.build();
|
||||
}
|
||||
----
|
||||
|
||||
@@ -344,7 +344,6 @@ value of 10.
|
||||
public Job sampleJob() {
|
||||
return this.jobBuilderFactory.get("sampleJob")
|
||||
.start(step1())
|
||||
.end()
|
||||
.build();
|
||||
}
|
||||
|
||||
@@ -482,7 +481,6 @@ public Job footballJob() {
|
||||
.start(playerLoad())
|
||||
.next(gameLoad())
|
||||
.next(playerSummarization())
|
||||
.end()
|
||||
.build();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user