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 9c8d288 Javadoc: Use links in @depreacted comments. 9c8d288 is described below commit 9c8d2885e21781dc702f2b507269d4dada235767 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu Sep 16 15:38:43 2021 -0400 Javadoc: Use links in @depreacted comments. --- src/main/java/org/apache/commons/io/IOUtils.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/io/IOUtils.java b/src/main/java/org/apache/commons/io/IOUtils.java index 597d612..ebd5dce 100644 --- a/src/main/java/org/apache/commons/io/IOUtils.java +++ b/src/main/java/org/apache/commons/io/IOUtils.java @@ -3400,7 +3400,7 @@ public class IOUtils { * @throws NullPointerException if output is null * @throws IOException if an I/O error occurs * @since 1.1 - * @deprecated replaced by write(CharSequence, OutputStream) + * @deprecated Use {@link #write(CharSequence, OutputStream)} */ @Deprecated public static void write(final StringBuffer data, final OutputStream output) //NOSONAR @@ -3427,7 +3427,7 @@ public class IOUtils { * @throws java.nio.charset.UnsupportedCharsetException thrown instead of {@link java.io * .UnsupportedEncodingException} in version 2.2 if the encoding is not supported. * @since 1.1 - * @deprecated replaced by write(CharSequence, OutputStream, String) + * @deprecated Use {@link #write(CharSequence, OutputStream, String)}. */ @Deprecated public static void write(final StringBuffer data, final OutputStream output, final String charsetName) //NOSONAR @@ -3445,7 +3445,7 @@ public class IOUtils { * @throws NullPointerException if output is null * @throws IOException if an I/O error occurs * @since 1.1 - * @deprecated replaced by write(CharSequence, Writer) + * @deprecated Use {@link #write(CharSequence, Writer)} */ @Deprecated public static void write(final StringBuffer data, final Writer writer) //NOSONAR