Skip to content

Commit 2c58eea

Browse files
committed
Mark HttpMethod::resolve for removal
1 parent fadf69f commit 2c58eea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-web/src/main/java/org/springframework/http/HttpMethod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public static HttpMethod valueOf(String method) {
138138
* @deprecated in favor of {@link #valueOf(String)}
139139
*/
140140
@Nullable
141-
@Deprecated
141+
@Deprecated(since = "6.0", forRemoval = true)
142142
public static HttpMethod resolve(@Nullable String method) {
143143
return (method != null ? valueOf(method) : null);
144144
}

0 commit comments

Comments
 (0)