Skip to content

Commit

Permalink
dispatch doTrace()
Browse files Browse the repository at this point in the history
  • Loading branch information
jimma authored and asoldano committed Nov 20, 2017
1 parent d5e87e8 commit e4bff07
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -87,7 +87,12 @@ public void doDelete(HttpServletRequest request, HttpServletResponse response, S
{
this.doDelete(request, response);
}

@Override
public void doTrace(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException
{
super.handleRequest(request, response);
}
@Override
public void service(HttpServletRequest request, HttpServletResponse response, ServletContext context)
throws ServletException, IOException
Expand Down

0 comments on commit e4bff07

Please sign in to comment.