From 89e90b0c6814d658de427f8cf54da83624512cd6 Mon Sep 17 00:00:00 2001 From: ChangYong Date: Sun, 18 Apr 2021 13:22:04 +0900 Subject: [PATCH] Deleted the not exists method This example code fails the build. `end()` method is not exists --- spring-batch-docs/src/main/asciidoc/step.adoc | 2 -- 1 file changed, 2 deletions(-) diff --git a/spring-batch-docs/src/main/asciidoc/step.adoc b/spring-batch-docs/src/main/asciidoc/step.adoc index 9aae66f942..42f41c7500 100644 --- a/spring-batch-docs/src/main/asciidoc/step.adoc +++ b/spring-batch-docs/src/main/asciidoc/step.adoc @@ -352,7 +352,6 @@ value of 10 as it would be defined in Java: public Job sampleJob() { return this.jobBuilderFactory.get("sampleJob") .start(step1()) - .end() .build(); } @@ -507,7 +506,6 @@ public Job footballJob() { .start(playerLoad()) .next(gameLoad()) .next(playerSummarization()) - .end() .build(); }