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 8d108f0 More precise Javadoc. 8d108f0 is described below commit 8d108f00343c315c73c5aac3a9e841619143dcc0 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Tue Sep 14 11:39:28 2021 -0400 More precise Javadoc. --- src/main/java/org/apache/commons/io/UncheckedIOExceptions.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/io/UncheckedIOExceptions.java b/src/main/java/org/apache/commons/io/UncheckedIOExceptions.java index f8f3ff7..4173c0d 100644 --- a/src/main/java/org/apache/commons/io/UncheckedIOExceptions.java +++ b/src/main/java/org/apache/commons/io/UncheckedIOExceptions.java @@ -31,11 +31,11 @@ public class UncheckedIOExceptions { /** * Creates a new UncheckedIOException for the given detail message. * <p> - * This method exists because there is no String constructor in UncheckedIOException. + * This method exists because there is no String constructor in {@link UncheckedIOException}. * </p> * * @param message the detail message. - * @return a new UncheckedIOException. + * @return a new {@link UncheckedIOException}. */ public static UncheckedIOException create(final Object message) { final String string = Objects.toString(message); @@ -45,12 +45,12 @@ public class UncheckedIOExceptions { /** * Creates a new UncheckedIOException for the given detail message. * <p> - * This method exists because there is no String constructor in UncheckedIOException. + * This method exists because there is no String constructor in {@link UncheckedIOException}. * </p> * * @param message the detail message. * @param e cause the {@code IOException}. - * @return a new UncheckedIOException. + * @return a new {@link UncheckedIOException}. */ public static UncheckedIOException create(final Object message, final IOException e) { return new UncheckedIOException(Objects.toString(message), e);