Fix javadoc on ItemReadListener interface

Found after reading some javadocs.
This seems to be a copy & paste mistake.

(cherry picked from commit f51ed50141)
This commit is contained in:
s.h.bae
2020-12-03 18:35:00 +01:00
committed by Mahmoud Ben Hassine
parent be093e20b8
commit ff858d5908

View File

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