| 49 | } |
| 50 | |
| 51 | void HttpHandler::HandlePost(const HttpRequest* req, HttpResponse* resp) { |
| 52 | MethodNotAllowed(req, resp); |
| 53 | } |
| 54 | |
| 55 | void HttpHandler::HandlePut(const HttpRequest* req, HttpResponse* resp) { |
| 56 | MethodNotAllowed(req, resp); |
nothing calls this directly
no outgoing calls
no test coverage detected