From 8458888472e8a28c5277aa3a5c858691602b2803 Mon Sep 17 00:00:00 2001 From: pri88yank <40143421+pri88yank@users.noreply.github.com> Date: Thu, 4 Jan 2024 23:46:36 -0500 Subject: [PATCH] Update AbstractXmlHttpMessageConverter.java Small typo in comments of Media Type supported --- .../http/converter/xml/AbstractXmlHttpMessageConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/http/converter/xml/AbstractXmlHttpMessageConverter.java b/spring-web/src/main/java/org/springframework/http/converter/xml/AbstractXmlHttpMessageConverter.java index a2443afe290a..b6c607ec0ce2 100644 --- a/spring-web/src/main/java/org/springframework/http/converter/xml/AbstractXmlHttpMessageConverter.java +++ b/spring-web/src/main/java/org/springframework/http/converter/xml/AbstractXmlHttpMessageConverter.java @@ -56,7 +56,7 @@ public abstract class AbstractXmlHttpMessageConverter extends AbstractHttpMes /** * Protected constructor that sets the {@link #setSupportedMediaTypes(java.util.List) supportedMediaTypes} - * to {@code text/xml} and {@code application/xml}, and {@code application/*-xml}. + * to {@code text/xml} and {@code application/xml}, and {@code application/*+xml}. */ protected AbstractXmlHttpMessageConverter() { super(MediaType.APPLICATION_XML, MediaType.TEXT_XML, new MediaType("application", "*+xml"));