unnecessary arguments

This commit is contained in:
Xavier Léauté 2014-07-25 16:26:44 -07:00
parent df59d2acb4
commit 863929d550

View File

@ -98,7 +98,7 @@ public class AsyncQueryForwardingServlet extends HttpServlet
protected void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException
{
final AsyncContext asyncContext = req.startAsync(req, res);
final AsyncContext asyncContext = req.startAsync();
asyncContext.setTimeout(0);
final HttpResponseHandler<ServletOutputStream, ServletOutputStream> responseHandler =