doFilterNestedErrorDispatch delegates to filter chain

Closes: gh-23596
This commit is contained in:
Rossen Stoyanchev
2019-09-12 10:25:25 +01:00
parent 6eb0e9e44b
commit 07b0fa132e
2 changed files with 4 additions and 3 deletions

View File

@@ -247,7 +247,7 @@ public abstract class OncePerRequestFilter extends GenericFilterBean {
protected void doFilterNestedErrorDispatch(HttpServletRequest request, HttpServletResponse response,
FilterChain filterChain) throws ServletException, IOException {
doFilter(request, response, filterChain);
filterChain.doFilter(request, response);
}
}