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 13258ce2 Javadoc: Don't use FQCN in throws clause.
13258ce2 is described below

commit 13258ce2d07aa0e764bbaa8020af4dcd3a02a620
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 21 15:27:36 2022 -0400

    Javadoc: Don't use FQCN in throws clause.
---
 src/main/java/org/apache/commons/io/input/Tailer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/input/Tailer.java 
b/src/main/java/org/apache/commons/io/input/Tailer.java
index 6b26474e..57b34988 100644
--- a/src/main/java/org/apache/commons/io/input/Tailer.java
+++ b/src/main/java/org/apache/commons/io/input/Tailer.java
@@ -835,7 +835,7 @@ public class Tailer implements Runnable, AutoCloseable {
      *
      * @param reader The file to read
      * @return The new position after the lines have been read
-     * @throws java.io.IOException if an I/O error occurs.
+     * @throws IOException if an I/O error occurs.
      */
     private long readLines(final RandomAccessResourceBridge reader) throws 
IOException {
         try (ByteArrayOutputStream lineBuf = new ByteArrayOutputStream(64)) {

Reply via email to