From 8ab75b883af731edd3bc68d7e4f6e428709406fb Mon Sep 17 00:00:00 2001 From: Scott Battaglia Date: Thu, 20 Jun 2013 19:28:35 -0400 Subject: [PATCH] Renamed arguments --- .../authentication/AuthenticationFilterTests.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cas-client-core/src/test/java/org/jasig/cas/client/authentication/AuthenticationFilterTests.java b/cas-client-core/src/test/java/org/jasig/cas/client/authentication/AuthenticationFilterTests.java index b9cc6e7..396c536 100644 --- a/cas-client-core/src/test/java/org/jasig/cas/client/authentication/AuthenticationFilterTests.java +++ b/cas-client-core/src/test/java/org/jasig/cas/client/authentication/AuthenticationFilterTests.java @@ -70,7 +70,7 @@ public final class AuthenticationFilterTests { final MockHttpServletResponse response = new MockHttpServletResponse(); final FilterChain filterChain = new FilterChain() { - public void doFilter(ServletRequest arg0, ServletResponse arg1) throws IOException, ServletException { + public void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException { // nothing to do } }; @@ -92,7 +92,7 @@ public final class AuthenticationFilterTests { request.setSecure(true); final FilterChain filterChain = new FilterChain() { - public void doFilter(ServletRequest arg0, ServletResponse arg1) throws IOException, ServletException { + public void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException { // nothing to do } }; @@ -122,7 +122,7 @@ public final class AuthenticationFilterTests { final MockHttpServletResponse response = new MockHttpServletResponse(); final FilterChain filterChain = new FilterChain() { - public void doFilter(ServletRequest arg0, ServletResponse arg1) throws IOException, ServletException { + public void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException { // nothing to do } }; @@ -141,7 +141,7 @@ public final class AuthenticationFilterTests { final MockHttpServletResponse response = new MockHttpServletResponse(); final FilterChain filterChain = new FilterChain() { - public void doFilter(ServletRequest arg0, ServletResponse arg1) throws IOException, ServletException { + public void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException { // nothing to do } }; @@ -161,7 +161,7 @@ public final class AuthenticationFilterTests { final MockHttpServletResponse response = new MockHttpServletResponse(); final FilterChain filterChain = new FilterChain() { - public void doFilter(ServletRequest arg0, ServletResponse arg1) throws IOException, ServletException { + public void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException { // nothing to do } };