You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/09/30 03:43:50 UTC

svn commit: r1002924 - /commons/proper/io/trunk/src/java/org/apache/commons/io/input/Tailer.java

Author: sebb
Date: Thu Sep 30 01:43:49 2010
New Revision: 1002924

URL: http://svn.apache.org/viewvc?rev=1002924&view=rev
Log:
Javadoc

Modified:
    commons/proper/io/trunk/src/java/org/apache/commons/io/input/Tailer.java

Modified: commons/proper/io/trunk/src/java/org/apache/commons/io/input/Tailer.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/java/org/apache/commons/io/input/Tailer.java?rev=1002924&r1=1002923&r2=1002924&view=diff
==============================================================================
--- commons/proper/io/trunk/src/java/org/apache/commons/io/input/Tailer.java (original)
+++ commons/proper/io/trunk/src/java/org/apache/commons/io/input/Tailer.java Thu Sep 30 01:43:49 2010
@@ -64,7 +64,7 @@ public class Tailer implements Runnable 
     private volatile boolean run = true;
 
     /**
-     * Creates SimpleTailer for the given file.
+     * Creates SimpleTailer for the given file, starting from the beginning, with the default delay of 1.0s.
      * @param file The file to follow.
      * @param listener The TailerListener which to use.
      */
@@ -73,7 +73,7 @@ public class Tailer implements Runnable 
     }
 
     /**
-     * Creates a SimpleTailer for the given file, with a delay other than the default 1.0s.
+     * Creates a SimpleTailer for the given file, starting from the beginning.
      * @param file The file to follow.
      * @param listener The TailerListener which to use.
      * @param delay The delay between checks of the file for new content in milliseconds.