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 d8cfcf6 Javadoc. d8cfcf6 is described below commit d8cfcf647ca586bc1901f0892217f17f4d3fe667 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Sep 19 12:25:20 2021 -0400 Javadoc. --- src/main/java/org/apache/commons/io/input/Tailer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 349f848..d60a01c 100644 --- a/src/main/java/org/apache/commons/io/input/Tailer.java +++ b/src/main/java/org/apache/commons/io/input/Tailer.java @@ -368,11 +368,11 @@ public class Tailer implements Runnable, AutoCloseable { public interface Tailable { /** - * Creates a random access file stream to read from. + * Creates a random access file stream to read. * - * @param mode the access mode {@link RandomAccessFile} - * @return a random access file stream to read from - * @throws FileNotFoundException if the tailable object does not exist + * @param mode the access mode, by default this is for {@link RandomAccessFile}. + * @return a random access file stream to read. + * @throws FileNotFoundException if the tailable object does not exist. */ RandomAccessResourceBridge getRandomAccess(final String mode) throws FileNotFoundException;