From 124837e2c3ffd185a389c9c21e9a673044d22fe1 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Thu, 25 Mar 2010 13:02:19 +0000 Subject: [PATCH] Added @Override annotations. --- .../springframework/web/filter/HiddenHttpMethodFilter.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/org.springframework.web/src/main/java/org/springframework/web/filter/HiddenHttpMethodFilter.java b/org.springframework.web/src/main/java/org/springframework/web/filter/HiddenHttpMethodFilter.java index 15f9855cf8..81551670ab 100644 --- a/org.springframework.web/src/main/java/org/springframework/web/filter/HiddenHttpMethodFilter.java +++ b/org.springframework.web/src/main/java/org/springframework/web/filter/HiddenHttpMethodFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -58,6 +58,7 @@ public class HiddenHttpMethodFilter extends OncePerRequestFilter { this.methodParam = methodParam; } + @Override protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException { @@ -86,6 +87,7 @@ public class HiddenHttpMethodFilter extends OncePerRequestFilter { this.method = method; } + @Override public String getMethod() { return this.method; }