From 8abd313ae4fbd8589b51ebd62a4fa15e394f42cb Mon Sep 17 00:00:00 2001 From: Kim Seon Woo Date: Tue, 27 Jun 2023 23:46:00 +0900 Subject: [PATCH] Fix javadoc of SimpleStepBuilder Resolves #4402 Author: Seon Woo Kim (cherry picked from commit 1c4822313aab75a34614d330df4d169eeaaf9199) --- .../batch/core/step/builder/SimpleStepBuilder.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/step/builder/SimpleStepBuilder.java b/spring-batch-core/src/main/java/org/springframework/batch/core/step/builder/SimpleStepBuilder.java index 9bf252cbd..aa51c34e5 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/step/builder/SimpleStepBuilder.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/step/builder/SimpleStepBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2022 the original author or authors. + * Copyright 2006-2023 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -58,8 +58,8 @@ import org.springframework.util.Assert; /** * Step builder for simple item processing (chunk oriented) steps. Items are read and - * cached in chunks, and then processed (transformed) and written (optionally either the - * processor or the writer can be omitted) all in the same transaction. + * cached in chunks, and then processed (transformed) and written (optionally the + * processor can be omitted) all in the same transaction. * * @see FaultTolerantStepBuilder for a step that handles retry and skip of failed items * @author Dave Syer