Skip to content

Commit 55841cd

Browse files
author
Gary Gregory
committed
Javadoc tweaks
1 parent 88e2614 commit 55841cd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/io/function/IOConsumer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ public interface IOConsumer<T> {
4242

4343
/**
4444
* Performs an action for each element of the collection gathering any exceptions.
45+
*
4546
* @param action The action to apply to each input element.
4647
* @param iterable The input to stream.
47-
*
4848
* @param <T> The element type.
4949
* @throws IOExceptionList if any I/O errors occur.
5050
* @since 2.12.0
@@ -55,9 +55,9 @@ static <T> void forAll(final IOConsumer<T> action, final Iterable<T> iterable) t
5555

5656
/**
5757
* Performs an action for each element of the collection gathering any exceptions.
58+
*
5859
* @param action The action to apply to each input element.
5960
* @param stream The input to stream.
60-
*
6161
* @param <T> The element type.
6262
* @throws IOExceptionList if any I/O errors occur.
6363
* @since 2.12.0
@@ -68,9 +68,9 @@ static <T> void forAll(final IOConsumer<T> action, final Stream<T> stream) throw
6868

6969
/**
7070
* Performs an action for each element of the array gathering any exceptions.
71+
*
7172
* @param action The action to apply to each input element.
7273
* @param array The input to stream.
73-
*
7474
* @param <T> The element type.
7575
* @throws IOExceptionList if any I/O errors occur.
7676
* @since 2.12.0

0 commit comments

Comments
 (0)