提交 21cca695 编写于 作者: A Arjen Poutsma

Polishing

上级 ba2bac17
......@@ -78,6 +78,11 @@ public class MediaType implements Comparable<MediaType> {
* */
public final static MediaType APPLICATION_XHTML_XML;
/**
* Public constant media type for {@code application/xml}.
*/
public final static MediaType APPLICATION_XML;
/**
* Public constant media type for {@code image/gif}.
*/
......@@ -93,11 +98,6 @@ public class MediaType implements Comparable<MediaType> {
*/
public final static MediaType IMAGE_PNG;
/**
* Public constant media type for {@code image/xml}.
*/
public final static MediaType APPLICATION_XML;
/**
* Public constant media type for {@code multipart/form-data}.
* */
......
......@@ -52,7 +52,7 @@ public abstract class AbstractXmlHttpMessageConverter<T> extends AbstractHttpMes
* to {@code text/xml} and {@code application/xml}, and {@code application/*-xml}.
*/
protected AbstractXmlHttpMessageConverter() {
super(new MediaType("application", "xml"), new MediaType("text", "xml"), new MediaType("application", "*+xml"));
super(MediaType.APPLICATION_XML, MediaType.TEXT_XML, new MediaType("application", "*+xml"));
}
......@@ -70,7 +70,7 @@ public abstract class AbstractXmlHttpMessageConverter<T> extends AbstractHttpMes
* Transforms the given {@code Source} to the {@code Result}.
* @param source the source to transform from
* @param result the result to transform to
* @throws HttpMessageConversionException in case of transformation errors
* @throws TransformerException in case of transformation errors
*/
protected void transform(Source source, Result result) throws TransformerException {
this.transformerFactory.newTransformer().transform(source, result);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册