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-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new e7c421f  [LANG-1568] 
org.apache.commons.lang3.function.FailableBiConsumer.andThen(FailableBiConsumer<?
 super T, ? super U, E>)
e7c421f is described below

commit e7c421ff35958ce2df61de1091d355370ae28475
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Jun 24 17:02:35 2020 -0400

    [LANG-1568]
    
org.apache.commons.lang3.function.FailableBiConsumer.andThen(FailableBiConsumer<?
    super T, ? super U, E>)
---
 .../java/org/apache/commons/lang3/function/FailableBiConsumer.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java 
b/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java
index 34ace1b..ec31596 100644
--- a/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java
+++ b/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java
@@ -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
      */

Reply via email to