| 53 | } |
| 54 | |
| 55 | void HttpHandler::HandlePut(const HttpRequest* req, HttpResponse* resp) { |
| 56 | MethodNotAllowed(req, resp); |
| 57 | } |
| 58 | |
| 59 | void HttpHandler::HandleDelete(const HttpRequest* req, HttpResponse* resp) { |
| 60 | MethodNotAllowed(req, resp); |
nothing calls this directly
no outgoing calls
no test coverage detected