You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by kr...@apache.org on 2015/11/12 17:53:27 UTC

svn commit: r1714088 - /commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/TailerTest.java

Author: krosenvold
Date: Thu Nov 12 16:53:26 2015
New Revision: 1714088

URL: http://svn.apache.org/viewvc?rev=1714088&view=rev
Log:
Fixed testcase to use Adapter instead of interface

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

Modified: commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/TailerTest.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/TailerTest.java?rev=1714088&r1=1714087&r2=1714088&view=diff
==============================================================================
--- commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/TailerTest.java (original)
+++ commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/TailerTest.java Thu Nov 12 16:53:26 2015
@@ -436,7 +436,7 @@ public class TailerTest extends FileBase
     /**
      * Test {@link TailerListener} implementation.
      */
-    private static class TestTailerListener implements TailerListener {
+    private static class TestTailerListener extends TailerListenerAdapter {
 
         // Must be synchronised because it is written by one thread and read by another
         private final List<String> lines = Collections.synchronizedList(new ArrayList<String>());