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/10/02 00:28:13 UTC

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

Author: sebb
Date: Fri Oct  1 22:28:13 2010
New Revision: 1003686

URL: http://svn.apache.org/viewvc?rev=1003686&view=rev
Log:
Missing annotations

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

Modified: commons/proper/io/trunk/src/test/org/apache/commons/io/input/ProxyReaderTest.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/org/apache/commons/io/input/ProxyReaderTest.java?rev=1003686&r1=1003685&r2=1003686&view=diff
==============================================================================
--- commons/proper/io/trunk/src/test/org/apache/commons/io/input/ProxyReaderTest.java (original)
+++ commons/proper/io/trunk/src/test/org/apache/commons/io/input/ProxyReaderTest.java Fri Oct  1 22:28:13 2010
@@ -75,9 +75,11 @@ public class ProxyReaderTest extends Tes
         CustomNullReader(int len) {
             super(len);
         }
+        @Override
         public int read(char[] chars) throws IOException {
             return chars == null ? 0 : super.read(chars);
         }
+        @Override
         public int read(CharBuffer target) throws IOException {
             return target == null ? 0 : super.read(target);
         }