@@ -62,7 +62,7 @@ public final void doFilter(
6262 // NOTE: should be moved bellow, just before getDispatcher().process(...)
6363 RackResponseEnvironment responseEnv = new ServletRackResponseEnvironment (httpResponse );
6464
65- if (isDoDispatch (requestCapture , responseCapture , chain , env , responseEnv )) {
65+ if (isDoDispatch (requestCapture , responseCapture , chain , env )) {
6666 getDispatcher ().process (env , responseEnv );
6767 }
6868
@@ -99,26 +99,6 @@ protected boolean isDoDispatch(
9999 return true ;
100100 }
101101
102- /**
103- * @deprecated use {@link #isDoDispatch(RequestCapture, ResponseCapture, FilterChain, RackEnvironment)}
104- * @param request the request
105- * @param response the response
106- * @param chain the FilterChain
107- * @param env the RackEnvironent
108- * @param responseEnv the RackResponseEnvironment
109- * @return isDoDispatch
110- * @throws IOException if there's an IO exception
111- * @throws ServletException if there's a servlet exception
112- */
113- @ Deprecated
114- protected boolean isDoDispatch (
115- RequestCapture request , ResponseCapture response ,
116- FilterChain chain , RackEnvironment env ,
117- RackResponseEnvironment responseEnv )
118- throws IOException , ServletException {
119- return isDoDispatch (request , response , chain , env );
120- }
121-
122102 /**
123103 * Extension point if you'll need to customize {@link RequestCapture}
124104 * @param request the request
0 commit comments