We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a665202 commit d2e39b6Copy full SHA for d2e39b6
src/main/java/org/apache/commons/io/function/IOIterable.java
@@ -44,8 +44,8 @@ default Iterable<T> asIterable() {
44
* Like {@link Iterable#iterator()}.
45
*
46
* @param action The action to be performed for each element.
47
- * @throws NullPointerException if the specified action is null.
48
- * @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.
49
* @see Iterable#iterator()
50
*/
51
default void forEach(final IOConsumer<? super T> action) throws IOException {
0 commit comments