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 80118e50 Javadoc
80118e50 is described below
commit 80118e507787bdb80def60f807e37003ab9fb65e
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jun 1 13:46:24 2023 -0400
Javadoc
---
src/main/java/org/apache/commons/io/build/AbstractSupplier.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/io/build/AbstractSupplier.java
b/src/main/java/org/apache/commons/io/build/AbstractSupplier.java
index f35c9bca..bfbeabad 100644
--- a/src/main/java/org/apache/commons/io/build/AbstractSupplier.java
+++ b/src/main/java/org/apache/commons/io/build/AbstractSupplier.java
@@ -20,7 +20,7 @@ package org.apache.commons.io.build;
import org.apache.commons.io.function.IOSupplier;
/**
- * Abstracts supplying a typed instance of {@code T}. Use to implement the
builder pattern.
+ * Abstracts supplying an instance of {@code T}. Use to implement the builder
pattern.
*
* @param <T> the type of instances to build.
* @param <B> the type of builder subclass.