This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push:
new d2e39b645 Javadoc
d2e39b645 is described below
commit d2e39b6453de8b030a701bd5bbdbb02fe839abe9
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Dec 5 10:13:44 2025 -0500
Javadoc
---
src/main/java/org/apache/commons/io/function/IOIterable.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/io/function/IOIterable.java
b/src/main/java/org/apache/commons/io/function/IOIterable.java
index 238040d1d..bfaccc103 100644
--- a/src/main/java/org/apache/commons/io/function/IOIterable.java
+++ b/src/main/java/org/apache/commons/io/function/IOIterable.java
@@ -44,8 +44,8 @@ default Iterable<T> asIterable() {
* Like {@link Iterable#iterator()}.
*
* @param action The action to be performed for each element.
- * @throws NullPointerException if the specified action is null.
- * @throws IOException thrown by the given action.
+ * @throws NullPointerException Thrown if the specified action is null.
+ * @throws IOException Thrown if an I/O error occurs for a
remaining element, or the given action throws.
* @see Iterable#iterator()
*/
default void forEach(final IOConsumer<? super T> action) throws
IOException {