Added @Override annotations.
This commit is contained in:
parent
753a54096f
commit
124837e2c3
|
|
@ -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");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with 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;
|
this.methodParam = methodParam;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
|
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
|
||||||
throws ServletException, IOException {
|
throws ServletException, IOException {
|
||||||
|
|
||||||
|
|
@ -86,6 +87,7 @@ public class HiddenHttpMethodFilter extends OncePerRequestFilter {
|
||||||
this.method = method;
|
this.method = method;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public String getMethod() {
|
public String getMethod() {
|
||||||
return this.method;
|
return this.method;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue