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:
ChangYong
2021-04-18 13:22:04 +09:00
committed by Mahmoud Ben Hassine
parent 28e3f04626
commit 3a1e769945
3 changed files with 0 additions and 6 deletions

View File

@@ -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();
}
----

View File

@@ -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();
}
----

View File

@@ -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();
}