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;