remove comment

This commit is contained in:
Looly 2021-06-15 17:19:34 +08:00
parent 1755bbadcc
commit f43ac9547b

View File

@ -343,13 +343,6 @@ public class HttpRequest extends HttpBase<HttpRequest> {
* @return HttpRequest
*/
public HttpRequest method(Method method) {
// if (Method.PATCH == method) {
// this.method = Method.POST;
// this.header("X-HTTP-Method-Override", "PATCH");
// } else {
// this.method = method;
// }
this.method = method;
return this;
}