[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:02:35 -04:00
parent 9173173699
commit e7c421ff35
1 changed files with 2 additions and 2 deletions

View File

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