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 306ec3b13 Javadoc 306ec3b13 is described below commit 306ec3b13ac5335ac9205fd7fdc263659e4868e4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Oct 11 11:34:32 2024 -0400 Javadoc --- .../java/org/apache/commons/io/build/AbstractSupplier.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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 c3a0f8c43..2afe9161b 100644 --- a/src/main/java/org/apache/commons/io/build/AbstractSupplier.java +++ b/src/main/java/org/apache/commons/io/build/AbstractSupplier.java @@ -125,9 +125,15 @@ import org.apache.commons.io.function.IOSupplier; public abstract class AbstractSupplier<T, B extends AbstractSupplier<T, B>> implements IOSupplier<T> { /** - * Returns this instance typed as the proper subclass type. + * Returns this instance typed as the subclass type {@link B}. + * <p> + * This is the same as the expression: + * </p> + * <pre> + * (B) this + * </pre> * - * @return this instance typed as the proper subclass type. + * @return this instance typed as the subclass type {@link B}. */ @SuppressWarnings("unchecked") protected B asThis() {