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 99ce6f4ed Fix Javadoc escaped '/' char
99ce6f4ed is described below

commit 99ce6f4ed0d43cddf183191af6ed913b8be06e89
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Oct 7 22:25:32 2024 -0400

    Fix Javadoc escaped '/' char
---
 .../org/apache/commons/io/build/AbstractSupplier.java   | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 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 61216033e..c9b43e1a3 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,10 @@ package org.apache.commons.io.build;
 import org.apache.commons.io.function.IOSupplier;
 
 /**
- * Abstracts supplying an instance of {@code T}. Use to implement the builder 
pattern.
+ * Abstracts supplying an instance of {@code T}.
+ * <p>
+ * Extend this class to implement the builder pattern.
+ * </p>
  * <p>
  * For example, here is a builder, a domain class, and a test.
  * </p>
@@ -28,18 +31,18 @@ import org.apache.commons.io.function.IOSupplier;
  * The builder:
  * </p>
  * <pre>
-    &#8725;**
+    &#47;**
      &ast; Builds Foo instances.
-     &ast;&#8725;
+     &ast;&#47;
     public static class Builder extends AbstractSupplier&#60;Foo, Builder&#62; 
{
 
         private String bar1;
         private String bar2;
         private String bar3;
 
-        &#8725;**
+        &#47;**
          &ast; Builds a new Foo.
-         &ast;&#8725;
+         &ast;&#47;
         &#64;Override
         public Foo get() {
             return new Foo(bar1, bar2, bar3);
@@ -65,9 +68,9 @@ import org.apache.commons.io.function.IOSupplier;
  * The domain class:
  * </p>
  * <pre>
-    &#8725;**
+    &#47;**
      &ast; Domain class.
-     &ast;&#8725;
+     &ast;&#47;
     public class Foo {
 
         public static Builder builder() {

Reply via email to