Skip to content

Commit 365a8c2

Browse files
author
Gary Gregory
committed
Javadoc.
1 parent 624bb57 commit 365a8c2

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/main/java/org/apache/commons/io/output/UncheckedAppendable.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public interface UncheckedAppendable extends Appendable {
3232

3333
/**
3434
* Creates a new instance on the given Appendable.
35-
*
35+
*
3636
* @param appendable The Appendable to uncheck.
3737
* @return a new instance.
3838
*/
@@ -41,19 +41,20 @@ public static UncheckedAppendable on(final Appendable appendable) {
4141
}
4242

4343
/**
44-
* Rethrows {@link IOException} as {@link UncheckedIOException}.
44+
* Appends per {@link Appendable#append(char)} but rethrows {@link IOException} as {@link UncheckedIOException}.
4545
*/
4646
@Override
4747
UncheckedAppendable append(char c);
4848

4949
/**
50-
* Rethrows {@link IOException} as {@link UncheckedIOException}.
50+
* Appends per {@link Appendable#append(CharSequence)} but rethrows {@link IOException} as {@link UncheckedIOException}.
5151
*/
5252
@Override
5353
UncheckedAppendable append(CharSequence csq);
5454

5555
/**
56-
* Rethrows {@link IOException} as {@link UncheckedIOException}.
56+
* Appends per {@link Appendable#append(CharSequence, int, int)} but rethrows {@link IOException} as
57+
* {@link UncheckedIOException}.
5758
*/
5859
@Override
5960
UncheckedAppendable append(CharSequence csq, int start, int end);

0 commit comments

Comments
 (0)