Skip to content

Commit 7db39c0

Browse files
author
Gary Gregory
committed
Javadoc
1 parent cc42f81 commit 7db39c0

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/main/java/org/apache/commons/io/file/Counters.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -433,19 +433,19 @@ public static PathCounters longPathCounters() {
433433
}
434434

435435
/**
436-
* Returns the NOOP Counter.
436+
* Returns the no-op Counter.
437437
*
438-
* @return the NOOP Counter.
438+
* @return the no-op Counter.
439439
* @since 2.9.0
440440
*/
441441
public static Counter noopCounter() {
442442
return NoopCounter.INSTANCE;
443443
}
444444

445445
/**
446-
* Returns the NOOP PathCounters.
446+
* Returns the no-op PathCounters.
447447
*
448-
* @return the NOOP PathCounters.
448+
* @return the no-op PathCounters.
449449
* @since 2.9.0
450450
*/
451451
public static PathCounters noopPathCounters() {

src/main/java/org/apache/commons/io/function/IOBiConsumer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public interface IOBiConsumer<T, U> {
3838
*
3939
* @param <T> the type of the first argument to the operation
4040
* @param <U> the type of the second argument to the operation
41-
* @return The NOOP singleton.
41+
* @return The no-op singleton.
4242
*/
4343
static <T, U> IOBiConsumer<T, U> noop() {
4444
return Constants.IO_BI_CONSUMER;

src/main/java/org/apache/commons/io/function/IOBiFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public interface IOBiFunction<T, U, R> {
4545
* @param <T> the type of the first argument to the function
4646
* @param <U> the type of the second argument to the function
4747
* @param <R> the type of the result of the function
48-
* @return The NOOP singleton.
48+
* @return The no-op singleton.
4949
*/
5050
static <T, U, R> IOBiFunction<T, U, R> noop() {
5151
return Constants.IO_BI_FUNCTION;

src/main/java/org/apache/commons/io/function/IOConsumer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ static <T> void forEach(final T[] array, final IOConsumer<T> action) throws IOEx
118118
}
119119

120120
/**
121-
* Returns a constant NOOP consumer.
121+
* Returns a constant no-op consumer.
122122
*
123123
* @param <T> Type consumer type.
124-
* @return a constant NOOP consumer.
124+
* @return a constant no-op consumer.
125125
* @since 2.9.0
126126
*/
127127
@SuppressWarnings("unchecked")

src/main/java/org/apache/commons/io/function/IOTriConsumer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public interface IOTriConsumer<T, U, V> {
4040
* @param <T> the type of the first argument to the operation
4141
* @param <U> the type of the second argument to the operation
4242
* @param <V> the type of the third argument to the operation
43-
* @return The NOOP singleton.
43+
* @return The no-op singleton.
4444
*/
4545
static <T, U, V> IOTriConsumer<T, U, V> noop() {
4646
return Constants.IO_TRI_CONSUMER;

0 commit comments

Comments
 (0)