Skip to content

Commit 67053cb

Browse files
committed
Missing annotations
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1003686 13f79535-47bb-0310-9956-ffa450edef68
1 parent 049d680 commit 67053cb

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/test/org/apache/commons/io/input/ProxyReaderTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,11 @@ private static class CustomNullReader extends NullReader {
7575
CustomNullReader(int len) {
7676
super(len);
7777
}
78+
@Override
7879
public int read(char[] chars) throws IOException {
7980
return chars == null ? 0 : super.read(chars);
8081
}
82+
@Override
8183
public int read(CharBuffer target) throws IOException {
8284
return target == null ? 0 : super.read(target);
8385
}

0 commit comments

Comments
 (0)