From 093365b2f4e5e3eaf015f32b9da0230f058533a6 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Thu, 11 Dec 2008 16:42:25 +0000 Subject: [PATCH] Removed unnecessary cast. --- .../security/intercept/web/FilterInvocation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/intercept/web/FilterInvocation.java b/core/src/main/java/org/springframework/security/intercept/web/FilterInvocation.java index f2de9b39b8..2bd82943ec 100644 --- a/core/src/main/java/org/springframework/security/intercept/web/FilterInvocation.java +++ b/core/src/main/java/org/springframework/security/intercept/web/FilterInvocation.java @@ -78,7 +78,7 @@ public class FilterInvocation { } public HttpServletResponse getHttpResponse() { - return (HttpServletResponse) response; + return response; } /**