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 55841cd2 Javadoc tweaks
55841cd2 is described below
commit 55841cd2071917be628778de6f03dae9e3a349f0
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Sep 17 20:02:42 2022 -0400
Javadoc tweaks
---
src/main/java/org/apache/commons/io/function/IOConsumer.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/io/function/IOConsumer.java
b/src/main/java/org/apache/commons/io/function/IOConsumer.java
index d65b2a18..e417178f 100644
--- a/src/main/java/org/apache/commons/io/function/IOConsumer.java
+++ b/src/main/java/org/apache/commons/io/function/IOConsumer.java
@@ -42,9 +42,9 @@ public interface IOConsumer<T> {
/**
* Performs an action for each element of the collection gathering any
exceptions.
+ *
* @param action The action to apply to each input element.
* @param iterable The input to stream.
- *
* @param <T> The element type.
* @throws IOExceptionList if any I/O errors occur.
* @since 2.12.0
@@ -55,9 +55,9 @@ public interface IOConsumer<T> {
/**
* Performs an action for each element of the collection gathering any
exceptions.
+ *
* @param action The action to apply to each input element.
* @param stream The input to stream.
- *
* @param <T> The element type.
* @throws IOExceptionList if any I/O errors occur.
* @since 2.12.0
@@ -68,9 +68,9 @@ public interface IOConsumer<T> {
/**
* Performs an action for each element of the array gathering any
exceptions.
+ *
* @param action The action to apply to each input element.
* @param array The input to stream.
- *
* @param <T> The element type.
* @throws IOExceptionList if any I/O errors occur.
* @since 2.12.0