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 0e7fca648 Javadoc 0e7fca648 is described below commit 0e7fca648f1743eb7823c5d46ad29fb1b1f471be Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Oct 11 11:41:37 2024 -0400 Javadoc --- src/main/java/org/apache/commons/io/build/AbstractSupplier.java | 4 ++-- 1 file changed, 2 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 2afe9161b..84daedce2 100644 --- a/src/main/java/org/apache/commons/io/build/AbstractSupplier.java +++ b/src/main/java/org/apache/commons/io/build/AbstractSupplier.java @@ -125,7 +125,7 @@ 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 subclass type {@link B}. + * Returns this instance typed as the subclass type {@code B}. * <p> * This is the same as the expression: * </p> @@ -133,7 +133,7 @@ public abstract class AbstractSupplier<T, B extends AbstractSupplier<T, B>> impl * (B) this * </pre> * - * @return this instance typed as the subclass type {@link B}. + * @return this instance typed as the subclass type {@code B}. */ @SuppressWarnings("unchecked") protected B asThis() {