You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/07/25 14:08:59 UTC

[commons-io] branch master updated: Javadoc

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


The following commit(s) were added to refs/heads/master by this push:
     new 7db39c03 Javadoc
7db39c03 is described below

commit 7db39c030d54d8de18f267f7ae121bb77502690c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Jul 25 10:08:50 2022 -0400

    Javadoc
---
 src/main/java/org/apache/commons/io/file/Counters.java          | 8 ++++----
 src/main/java/org/apache/commons/io/function/IOBiConsumer.java  | 2 +-
 src/main/java/org/apache/commons/io/function/IOBiFunction.java  | 2 +-
 src/main/java/org/apache/commons/io/function/IOConsumer.java    | 4 ++--
 src/main/java/org/apache/commons/io/function/IOTriConsumer.java | 2 +-
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/file/Counters.java b/src/main/java/org/apache/commons/io/file/Counters.java
index 4e1811e4..2b6736c1 100644
--- a/src/main/java/org/apache/commons/io/file/Counters.java
+++ b/src/main/java/org/apache/commons/io/file/Counters.java
@@ -433,9 +433,9 @@ public class Counters {
     }
 
     /**
-     * Returns the NOOP Counter.
+     * Returns the no-op Counter.
      *
-     * @return the NOOP Counter.
+     * @return the no-op Counter.
      * @since 2.9.0
      */
     public static Counter noopCounter() {
@@ -443,9 +443,9 @@ public class Counters {
     }
 
     /**
-     * Returns the NOOP PathCounters.
+     * Returns the no-op PathCounters.
      *
-     * @return the NOOP PathCounters.
+     * @return the no-op PathCounters.
      * @since 2.9.0
      */
     public static PathCounters noopPathCounters() {
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 0afee728..f7dc67b8 100644
--- a/src/main/java/org/apache/commons/io/function/IOBiConsumer.java
+++ b/src/main/java/org/apache/commons/io/function/IOBiConsumer.java
@@ -38,7 +38,7 @@ 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.
+     * @return The no-op singleton.
      */
     static <T, U> IOBiConsumer<T, U> noop() {
         return Constants.IO_BI_CONSUMER;
diff --git a/src/main/java/org/apache/commons/io/function/IOBiFunction.java b/src/main/java/org/apache/commons/io/function/IOBiFunction.java
index e055f740..aed614b2 100644
--- a/src/main/java/org/apache/commons/io/function/IOBiFunction.java
+++ b/src/main/java/org/apache/commons/io/function/IOBiFunction.java
@@ -45,7 +45,7 @@ public interface IOBiFunction<T, U, R> {
      * @param <T> the type of the first argument to the function
      * @param <U> the type of the second argument to the function
      * @param <R> the type of the result of the function
-     * @return The NOOP singleton.
+     * @return The no-op singleton.
      */
     static <T, U, R> IOBiFunction<T, U, R> noop() {
         return Constants.IO_BI_FUNCTION;
diff --git a/src/main/java/org/apache/commons/io/function/IOConsumer.java b/src/main/java/org/apache/commons/io/function/IOConsumer.java
index 66f9c062..724ab1c1 100644
--- a/src/main/java/org/apache/commons/io/function/IOConsumer.java
+++ b/src/main/java/org/apache/commons/io/function/IOConsumer.java
@@ -118,10 +118,10 @@ public interface IOConsumer<T> {
     }
 
     /**
-     * Returns a constant NOOP consumer.
+     * Returns a constant no-op consumer.
      *
      * @param <T> Type consumer type.
-     * @return a constant NOOP consumer.
+     * @return a constant no-op consumer.
      * @since 2.9.0
      */
     @SuppressWarnings("unchecked")
diff --git a/src/main/java/org/apache/commons/io/function/IOTriConsumer.java b/src/main/java/org/apache/commons/io/function/IOTriConsumer.java
index a2d6b502..1d2db208 100644
--- a/src/main/java/org/apache/commons/io/function/IOTriConsumer.java
+++ b/src/main/java/org/apache/commons/io/function/IOTriConsumer.java
@@ -40,7 +40,7 @@ public interface IOTriConsumer<T, U, V> {
      * @param <T> the type of the first argument to the operation
      * @param <U> the type of the second argument to the operation
      * @param <V> the type of the third argument to the operation
-     * @return The NOOP singleton.
+     * @return The no-op singleton.
      */
     static <T, U, V> IOTriConsumer<T, U, V> noop() {
         return Constants.IO_TRI_CONSUMER;