[LANG-1568]

org.apache.commons.lang3.function.FailableBiConsumer.andThen(FailableBiConsumer<?
super T, ? super U, E>)
This commit is contained in:
Gary Gregory 2020-06-24 17:03:17 -04:00
parent e7c421ff35
commit 4badcde7f7
1 changed files with 2 additions and 2 deletions

View File

@ -57,10 +57,10 @@ static <T, U, E extends Throwable> FailableBiConsumer<T, U, E> nop() {
void accept(T t, U u) throws E;
/**
* Returns a composed {@code FailableBiConsumer} that like {@link BiConsumer#andThen(BiConsumer)}.
* Returns a composed {@code FailableBiConsumer} like {@link BiConsumer#andThen(BiConsumer)}.
*
* @param after the operation to perform after this one.
* @return a composed {@code FailableBiConsumer} that like {@link BiConsumer#andThen(BiConsumer)}.
* @return a composed {@code FailableBiConsumer} like {@link BiConsumer#andThen(BiConsumer)}.
* @throws E Thrown when a consumer fails.
* @throws NullPointerException if {@code after} is null
*/