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 365a8c2 Javadoc. 365a8c2 is described below commit 365a8c29174515698c5a349ae4e7729570e2f0a4 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Aug 29 12:03:48 2021 -0400 Javadoc. --- .../java/org/apache/commons/io/output/UncheckedAppendable.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/io/output/UncheckedAppendable.java b/src/main/java/org/apache/commons/io/output/UncheckedAppendable.java index f91de8f..de3ce0d 100644 --- a/src/main/java/org/apache/commons/io/output/UncheckedAppendable.java +++ b/src/main/java/org/apache/commons/io/output/UncheckedAppendable.java @@ -32,7 +32,7 @@ public interface UncheckedAppendable extends Appendable { /** * Creates a new instance on the given Appendable. - * + * * @param appendable The Appendable to uncheck. * @return a new instance. */ @@ -41,19 +41,20 @@ public interface UncheckedAppendable extends Appendable { } /** - * Rethrows {@link IOException} as {@link UncheckedIOException}. + * Appends per {@link Appendable#append(char)} but rethrows {@link IOException} as {@link UncheckedIOException}. */ @Override UncheckedAppendable append(char c); /** - * Rethrows {@link IOException} as {@link UncheckedIOException}. + * Appends per {@link Appendable#append(CharSequence)} but rethrows {@link IOException} as {@link UncheckedIOException}. */ @Override UncheckedAppendable append(CharSequence csq); /** - * Rethrows {@link IOException} as {@link UncheckedIOException}. + * Appends per {@link Appendable#append(CharSequence, int, int)} but rethrows {@link IOException} as + * {@link UncheckedIOException}. */ @Override UncheckedAppendable append(CharSequence csq, int start, int end);