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

commit 02e55fc072d1793bd66eebac9fe3f3872bd99699
Author: Gary Gregory <[email protected]>
AuthorDate: Sat May 6 14:00:33 2023 -0400

    Better consumer Javadocs
---
 src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java    | 2 +-
 src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java | 2 +-
 src/main/java/org/apache/commons/lang3/function/FailableConsumer.java   | 2 +-
 .../java/org/apache/commons/lang3/function/FailableDoubleConsumer.java  | 2 +-
 .../java/org/apache/commons/lang3/function/FailableIntConsumer.java     | 2 +-
 .../java/org/apache/commons/lang3/function/FailableLongConsumer.java    | 2 +-
 .../org/apache/commons/lang3/function/FailableObjDoubleConsumer.java    | 2 +-
 .../java/org/apache/commons/lang3/function/FailableObjIntConsumer.java  | 2 +-
 .../java/org/apache/commons/lang3/function/FailableObjLongConsumer.java | 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java 
b/src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java
index 9a6147241..eaed72d4f 100644
--- a/src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java
+++ b/src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java
@@ -42,7 +42,7 @@ public interface BooleanConsumer {
     }
 
     /**
-     * Performs this operation on the given argument.
+     * Accepts the given arguments.
      *
      * @param value the input argument
      */
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 823a6496d..dbe02806f 100644
--- a/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java
+++ b/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java
@@ -48,7 +48,7 @@ public interface FailableBiConsumer<T, U, E extends 
Throwable> {
     }
 
     /**
-     * Accepts the consumer.
+     * Accepts the given arguments.
      *
      * @param t the first parameter for the consumable to accept
      * @param u the second parameter for the consumable to accept
diff --git 
a/src/main/java/org/apache/commons/lang3/function/FailableConsumer.java 
b/src/main/java/org/apache/commons/lang3/function/FailableConsumer.java
index 9565a8f15..30595b4bb 100644
--- a/src/main/java/org/apache/commons/lang3/function/FailableConsumer.java
+++ b/src/main/java/org/apache/commons/lang3/function/FailableConsumer.java
@@ -51,7 +51,7 @@ public interface FailableConsumer<T, E extends Throwable> {
     }
 
     /**
-     * Accepts the consumer.
+     * Accepts the given arguments.
      *
      * @param object the parameter for the consumable to accept
      * @throws E Thrown when the consumer fails.
diff --git 
a/src/main/java/org/apache/commons/lang3/function/FailableDoubleConsumer.java 
b/src/main/java/org/apache/commons/lang3/function/FailableDoubleConsumer.java
index 88229ff60..fda3972af 100644
--- 
a/src/main/java/org/apache/commons/lang3/function/FailableDoubleConsumer.java
+++ 
b/src/main/java/org/apache/commons/lang3/function/FailableDoubleConsumer.java
@@ -44,7 +44,7 @@ public interface FailableDoubleConsumer<E extends Throwable> {
     }
 
     /**
-     * Accepts the consumer.
+     * Accepts the given arguments.
      *
      * @param value the parameter for the consumable to accept
      * @throws E Thrown when the consumer fails.
diff --git 
a/src/main/java/org/apache/commons/lang3/function/FailableIntConsumer.java 
b/src/main/java/org/apache/commons/lang3/function/FailableIntConsumer.java
index a9330e1f2..98df32449 100644
--- a/src/main/java/org/apache/commons/lang3/function/FailableIntConsumer.java
+++ b/src/main/java/org/apache/commons/lang3/function/FailableIntConsumer.java
@@ -44,7 +44,7 @@ public interface FailableIntConsumer<E extends Throwable> {
     }
 
     /**
-     * Accepts the consumer.
+     * Accepts the given arguments.
      *
      * @param value the parameter for the consumable to accept
      * @throws E Thrown when the consumer fails.
diff --git 
a/src/main/java/org/apache/commons/lang3/function/FailableLongConsumer.java 
b/src/main/java/org/apache/commons/lang3/function/FailableLongConsumer.java
index 946b4acf1..3bd4e46a9 100644
--- a/src/main/java/org/apache/commons/lang3/function/FailableLongConsumer.java
+++ b/src/main/java/org/apache/commons/lang3/function/FailableLongConsumer.java
@@ -44,7 +44,7 @@ public interface FailableLongConsumer<E extends Throwable> {
     }
 
     /**
-     * Accepts the consumer.
+     * Accepts the given arguments.
      *
      * @param object the parameter for the consumable to accept
      * @throws E Thrown when the consumer fails.
diff --git 
a/src/main/java/org/apache/commons/lang3/function/FailableObjDoubleConsumer.java
 
b/src/main/java/org/apache/commons/lang3/function/FailableObjDoubleConsumer.java
index 1c986b91f..725e9f365 100644
--- 
a/src/main/java/org/apache/commons/lang3/function/FailableObjDoubleConsumer.java
+++ 
b/src/main/java/org/apache/commons/lang3/function/FailableObjDoubleConsumer.java
@@ -45,7 +45,7 @@ public interface FailableObjDoubleConsumer<T, E extends 
Throwable> {
     }
 
     /**
-     * Accepts the consumer.
+     * Accepts the given arguments.
      *
      * @param object the object parameter for the consumable to accept.
      * @param value the double parameter for the consumable to accept.
diff --git 
a/src/main/java/org/apache/commons/lang3/function/FailableObjIntConsumer.java 
b/src/main/java/org/apache/commons/lang3/function/FailableObjIntConsumer.java
index aa8c02cc1..48055de02 100644
--- 
a/src/main/java/org/apache/commons/lang3/function/FailableObjIntConsumer.java
+++ 
b/src/main/java/org/apache/commons/lang3/function/FailableObjIntConsumer.java
@@ -45,7 +45,7 @@ public interface FailableObjIntConsumer<T, E extends 
Throwable> {
     }
 
     /**
-     * Accepts the consumer.
+     * Accepts the given arguments.
      *
      * @param object the object parameter for the consumable to accept.
      * @param value the int parameter for the consumable to accept.
diff --git 
a/src/main/java/org/apache/commons/lang3/function/FailableObjLongConsumer.java 
b/src/main/java/org/apache/commons/lang3/function/FailableObjLongConsumer.java
index b6e5a3552..e75bede46 100644
--- 
a/src/main/java/org/apache/commons/lang3/function/FailableObjLongConsumer.java
+++ 
b/src/main/java/org/apache/commons/lang3/function/FailableObjLongConsumer.java
@@ -45,7 +45,7 @@ public interface FailableObjLongConsumer<T, E extends 
Throwable> {
     }
 
     /**
-     * Accepts the consumer.
+     * Accepts the given arguments.
      *
      * @param object the object parameter for the consumable to accept.
      * @param value the long parameter for the consumable to accept.

Reply via email to