Skip to content

Commit 306ec3b

Browse files
committed
Javadoc
1 parent 4a0f460 commit 306ec3b

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,15 @@ public void test() {
125125
public abstract class AbstractSupplier<T, B extends AbstractSupplier<T, B>> implements IOSupplier<T> {
126126

127127
/**
128-
* Returns this instance typed as the proper subclass type.
128+
* Returns this instance typed as the subclass type {@link B}.
129+
* <p>
130+
* This is the same as the expression:
131+
* </p>
132+
* <pre>
133+
* (B) this
134+
* </pre>
129135
*
130-
* @return this instance typed as the proper subclass type.
136+
* @return this instance typed as the subclass type {@link B}.
131137
*/
132138
@SuppressWarnings("unchecked")
133139
protected B asThis() {

0 commit comments

Comments
 (0)