| commit | 1e8705903be81c83a13c622a82e3843753537790 | [log] [tgz] |
|---|---|---|
| author | Sebastian Bazley <sebb@apache.org> | Thu Mar 01 15:50:23 2012 +0000 |
| committer | Sebastian Bazley <sebb@apache.org> | Thu Mar 01 15:50:23 2012 +0000 |
| tree | 65b47d3d76800832bbd64978133efbb9148c3500 | |
| parent | 6ab5843928a7c3dfd7093e2d2d33cdc44b43ea67 [diff] |
Missing @Overrides git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1295634 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/test/java/org/apache/commons/io/IOUtilsTestCase.java b/src/test/java/org/apache/commons/io/IOUtilsTestCase.java index 869c444..0f21b83 100644 --- a/src/test/java/org/apache/commons/io/IOUtilsTestCase.java +++ b/src/test/java/org/apache/commons/io/IOUtilsTestCase.java
@@ -109,6 +109,7 @@ public void testCloseSelectorIOException() { Selector selector = new SelectorAdapter() { + @Override public void close() throws IOException { throw new IOException(); }
diff --git a/src/test/java/org/apache/commons/io/output/TeeOutputStreamTest.java b/src/test/java/org/apache/commons/io/output/TeeOutputStreamTest.java index 1c18bbe..7597ff3 100644 --- a/src/test/java/org/apache/commons/io/output/TeeOutputStreamTest.java +++ b/src/test/java/org/apache/commons/io/output/TeeOutputStreamTest.java
@@ -31,6 +31,7 @@ private static class ExceptionOnCloseByteArrayOutputStream extends ByteArrayOutputStream { + @Override public void close() throws IOException { throw new IOException(); } @@ -40,6 +41,7 @@ boolean closed; + @Override public void close() throws IOException { super.close(); closed = true;