From 73bfaf3de41631b7d587216f88e1d0f354f71771 Mon Sep 17 00:00:00 2001 From: Aaron <89061309+aaronsleepy@users.noreply.github.com> Date: Mon, 29 Nov 2021 11:08:09 +0100 Subject: [PATCH] Fix javadoc of FaultTolerantChunkProvider FaultTolerantChunkProvider is an implementation of ChunkProvider, not ChunkProcessor. Issue #4029 --- .../batch/core/step/item/FaultTolerantChunkProvider.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/step/item/FaultTolerantChunkProvider.java b/spring-batch-core/src/main/java/org/springframework/batch/core/step/item/FaultTolerantChunkProvider.java index 498d6d634..c893dbf9a 100755 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/step/item/FaultTolerantChunkProvider.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/step/item/FaultTolerantChunkProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2007 the original author or authors. + * Copyright 2006-2022 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. @@ -29,7 +29,7 @@ import org.springframework.classify.BinaryExceptionClassifier; import org.springframework.classify.Classifier; /** - * FaultTolerant implementation of the {@link ChunkProcessor} interface, that + * FaultTolerant implementation of the {@link ChunkProvider} interface, that * allows for skipping or retry of items that cause exceptions during reading or * processing. *