Fix references to "application/*+xml" in Javadoc

See gh-31951
This commit is contained in:
pri88yank 2024-01-04 23:46:36 -05:00 committed by Stéphane Nicoll
parent af2e13e211
commit 16b4c25f7d
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public abstract class AbstractXmlHttpMessageConverter<T> extends AbstractHttpMes
/** /**
* Protected constructor that sets the {@link #setSupportedMediaTypes(java.util.List) supportedMediaTypes} * 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() { protected AbstractXmlHttpMessageConverter() {
super(MediaType.APPLICATION_XML, MediaType.TEXT_XML, new MediaType("application", "*+xml")); super(MediaType.APPLICATION_XML, MediaType.TEXT_XML, new MediaType("application", "*+xml"));