mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
Polish deprecation message
Unfortunately it is too late to flag HttpMessageConverters for removal as it would be a breaking change in a patch release. See gh-46411
This commit is contained in:
+3
-2
@@ -53,10 +53,11 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupp
|
||||
* @see #HttpMessageConverters(HttpMessageConverter...)
|
||||
* @see #HttpMessageConverters(Collection)
|
||||
* @see #getConverters()
|
||||
* @deprecated since 4.0 in favor of {@link ClientHttpMessageConvertersCustomizer} and
|
||||
* @deprecated since 4.0.0 for removal in 4.2.0 in favor of
|
||||
* {@link ClientHttpMessageConvertersCustomizer} and
|
||||
* {@link ServerHttpMessageConvertersCustomizer}.
|
||||
*/
|
||||
@Deprecated(since = "4.0")
|
||||
@Deprecated(since = "4.0.0")
|
||||
public class HttpMessageConverters implements Iterable<HttpMessageConverter<?>> {
|
||||
|
||||
private static final List<Class<?>> NON_REPLACING_CONVERTERS;
|
||||
|
||||
Reference in New Issue
Block a user