| 57 | } |
| 58 | |
| 59 | void HttpHandler::HandleDelete(const HttpRequest* req, HttpResponse* resp) { |
| 60 | MethodNotAllowed(req, resp); |
| 61 | } |
| 62 | |
| 63 | void HttpHandler::HandleOptions(const HttpRequest* req, HttpResponse* resp) { |
| 64 | MethodNotAllowed(req, resp); |
nothing calls this directly
no outgoing calls
no test coverage detected