Author: johnh
Date: Tue May 24 19:23:58 2011
New Revision: 1127232

URL: http://svn.apache.org/viewvc?rev=1127232&view=rev
Log:
Remove @Override annotations which trip up JDK 1.5 compilers.


Modified:
    
shindig/trunk/java/common/src/test/java/org/apache/shindig/auth/AuthenticationServletFilterTest.java

Modified: 
shindig/trunk/java/common/src/test/java/org/apache/shindig/auth/AuthenticationServletFilterTest.java
URL: 
http://svn.apache.org/viewvc/shindig/trunk/java/common/src/test/java/org/apache/shindig/auth/AuthenticationServletFilterTest.java?rev=1127232&r1=1127231&r2=1127232&view=diff
==============================================================================
--- 
shindig/trunk/java/common/src/test/java/org/apache/shindig/auth/AuthenticationServletFilterTest.java
 (original)
+++ 
shindig/trunk/java/common/src/test/java/org/apache/shindig/auth/AuthenticationServletFilterTest.java
 Tue May 24 19:23:58 2011
@@ -65,18 +65,15 @@ public class AuthenticationServletFilter
   }
 
   private static class NullSecurityTokenAuthenticationHandler implements 
AuthenticationHandler {
-    @Override
     public String getName() {
       return "TestAuth";
     }
 
-    @Override
     public SecurityToken getSecurityTokenFromRequest(HttpServletRequest 
request)
         throws InvalidAuthenticationException {
       return null;
     }
 
-    @Override
     public String getWWWAuthenticateHeader(String realm) {
       return TEST_AUTH_HEADER;
     }


Reply via email to