Bumping versions

This commit is contained in:
buildmaster
2022-09-11 14:18:56 +00:00
parent 9bf05e401b
commit e61ddb8f1c
11 changed files with 352 additions and 350 deletions

View File

@@ -76,8 +76,8 @@ public final class HttpMethods {
public enum HttpMethod {
GET(HttpMethods.GET), HEAD(HttpMethods.HEAD), POST(HttpMethods.POST), PUT(HttpMethods.PUT), PATCH(
HttpMethods.PATCH), DELETE(HttpMethods.DELETE), OPTIONS(HttpMethods.OPTIONS), TRACE(HttpMethods.TRACE),;
GET(HttpMethods.GET), HEAD(HttpMethods.HEAD), POST(HttpMethods.POST), PUT(HttpMethods.PUT),
PATCH(HttpMethods.PATCH), DELETE(HttpMethods.DELETE), OPTIONS(HttpMethods.OPTIONS), TRACE(HttpMethods.TRACE),;
private final String methodName;