Skip to content

Commit 99ce6f4

Browse files
committed
Fix Javadoc escaped '/' char
1 parent f01c328 commit 99ce6f4

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

src/main/java/org/apache/commons/io/build/AbstractSupplier.java

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,29 @@
2020
import org.apache.commons.io.function.IOSupplier;
2121

2222
/**
23-
* Abstracts supplying an instance of {@code T}. Use to implement the builder pattern.
23+
* Abstracts supplying an instance of {@code T}.
24+
* <p>
25+
* Extend this class to implement the builder pattern.
26+
* </p>
2427
* <p>
2528
* For example, here is a builder, a domain class, and a test.
2629
* </p>
2730
* <p>
2831
* The builder:
2932
* </p>
3033
* <pre>
31-
&#8725;**
34+
&#47;**
3235
&ast; Builds Foo instances.
33-
&ast;&#8725;
36+
&ast;&#47;
3437
public static class Builder extends AbstractSupplier&#60;Foo, Builder&#62; {
3538
3639
private String bar1;
3740
private String bar2;
3841
private String bar3;
3942
40-
&#8725;**
43+
&#47;**
4144
&ast; Builds a new Foo.
42-
&ast;&#8725;
45+
&ast;&#47;
4346
&#64;Override
4447
public Foo get() {
4548
return new Foo(bar1, bar2, bar3);
@@ -65,9 +68,9 @@ public Builder setBar3(final String bar3) {
6568
* The domain class:
6669
* </p>
6770
* <pre>
68-
&#8725;**
71+
&#47;**
6972
&ast; Domain class.
70-
&ast;&#8725;
73+
&ast;&#47;
7174
public class Foo {
7275
7376
public static Builder builder() {

0 commit comments

Comments
 (0)