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
commit 717239a144bab80be463723d5a9b479daf26fdb8 Author: Gary Gregory <[email protected]> AuthorDate: Sun Jul 24 12:05:23 2022 -0400 Javadoc --- src/main/java/org/apache/commons/io/function/IOBiConsumer.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/io/function/IOBiConsumer.java b/src/main/java/org/apache/commons/io/function/IOBiConsumer.java index 6c72c418..0afee728 100644 --- a/src/main/java/org/apache/commons/io/function/IOBiConsumer.java +++ b/src/main/java/org/apache/commons/io/function/IOBiConsumer.java @@ -28,7 +28,7 @@ import java.util.function.BiConsumer; * @param <U> the type of the second argument to the operation * * @see BiConsumer - * @since 1.8 + * @since 2.12.0 */ @FunctionalInterface public interface IOBiConsumer<T, U> { @@ -39,7 +39,6 @@ public interface IOBiConsumer<T, U> { * @param <T> the type of the first argument to the operation * @param <U> the type of the second argument to the operation * @return The NOOP singleton. - * @since 2.12.0 */ static <T, U> IOBiConsumer<T, U> noop() { return Constants.IO_BI_CONSUMER; @@ -55,12 +54,12 @@ public interface IOBiConsumer<T, U> { void accept(T t, U u) throws IOException; /** - * Returns a composed {@link BiConsumer} that performs, in sequence, this operation followed by the {@code after} + * Returns a composed {@link IOBiConsumer} that performs, in sequence, this operation followed by the {@code after} * operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. * If performing this operation throws an exception, the {@code after} operation will not be performed. * * @param after the operation to perform after this operation - * @return a composed {@link BiConsumer} that performs in sequence this operation followed by the {@code after} + * @return a composed {@link IOBiConsumer} that performs in sequence this operation followed by the {@code after} * operation * @throws NullPointerException if {@code after} is null */
