From ff858d59080749a1dd3e0cd41732653546feb427 Mon Sep 17 00:00:00 2001 From: "s.h.bae" Date: Thu, 3 Dec 2020 18:35:00 +0100 Subject: [PATCH] Fix javadoc on ItemReadListener interface Found after reading some javadocs. This seems to be a copy & paste mistake. (cherry picked from commit f51ed50141db34a6d4ea6074e576fb1d57d7647f) --- .../java/org/springframework/batch/core/ItemReadListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/ItemReadListener.java b/spring-batch-core/src/main/java/org/springframework/batch/core/ItemReadListener.java index 8495d3250..9a71bbed9 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/ItemReadListener.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/ItemReadListener.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2018 the original author or authors. + * Copyright 2006-2021 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. @@ -44,7 +44,7 @@ public interface ItemReadListener extends StepListener { /** * Called if an error occurs while trying to read. * - * @param ex thrown from {@link ItemWriter} + * @param ex thrown from {@link ItemReader} */ void onReadError(Exception ex); }