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 f7751798 No need for a FQCN for classes in java.lang f7751798 is described below commit f77517984af53db3b1626da12ac16dc188fee41b Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Aug 28 12:27:33 2022 -0400 No need for a FQCN for classes in java.lang --- src/main/java/org/apache/commons/io/LineIterator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/io/LineIterator.java b/src/main/java/org/apache/commons/io/LineIterator.java index e1d750d5..6c67af17 100644 --- a/src/main/java/org/apache/commons/io/LineIterator.java +++ b/src/main/java/org/apache/commons/io/LineIterator.java @@ -58,7 +58,7 @@ public class LineIterator implements Iterator<String>, Closeable { * @param iterator The iterator to close, or {@code null}. * @deprecated As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle * suppressed exceptions manually. - * @see Throwable#addSuppressed(java.lang.Throwable) + * @see Throwable#addSuppressed(Throwable) */ @Deprecated public static void closeQuietly(final LineIterator iterator) {