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 02:33:01 UTC

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

Author: sebb
Date: Thu Sep 30 00:33:00 2010
New Revision: 1002913

URL: http://svn.apache.org/viewvc?rev=1002913&view=rev
Log:
No longer need synch. here

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=1002913&r1=1002912&r2=1002913&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 00:33:00 2010
@@ -209,9 +209,9 @@ public class Tailer implements Runnable 
     }
 
     /**
-     * Allows the tailer to complete it's current loop and return.
+     * Allows the tailer to complete its current loop and return.
      */
-    public synchronized void stop() {
+    public void stop() {
         this.run = false;
     }