Skip to content

Commit f7031df

Browse files
committed
Javadoc fixes
Issue: SPR-13765 (cherry picked from commit 242acda)
1 parent 7bc04dc commit f7031df

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

spring-web/src/main/java/org/springframework/http/converter/json/Jackson2ObjectMapperFactoryBean.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -82,13 +82,13 @@
8282
* <bean class="org.springframework.http.converter.json.Jackson2ObjectMapperFactoryBean">
8383
* <property name="featuresToEnable">
8484
* <array>
85-
* <util:constant static-field="com.fasterxml.jackson.databind.SerializationFeature$WRAP_ROOT_VALUE"/>
86-
* <util:constant static-field="com.fasterxml.jackson.databind.SerializationFeature$CLOSE_CLOSEABLE"/>
85+
* <util:constant static-field="com.fasterxml.jackson.databind.SerializationFeature.WRAP_ROOT_VALUE"/>
86+
* <util:constant static-field="com.fasterxml.jackson.databind.SerializationFeature.CLOSE_CLOSEABLE"/>
8787
* </array>
8888
* </property>
8989
* <property name="featuresToDisable">
9090
* <array>
91-
* <util:constant static-field="com.fasterxml.jackson.databind.MapperFeature$USE_ANNOTATIONS"/>
91+
* <util:constant static-field="com.fasterxml.jackson.databind.MapperFeature.USE_ANNOTATIONS"/>
9292
* </array>
9393
* </property>
9494
* </bean>

spring-web/src/main/java/org/springframework/http/converter/json/JacksonObjectMapperFactoryBean.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -67,13 +67,13 @@
6767
* <bean class="org.springframework.web.context.support.JacksonObjectMapperFactoryBean">
6868
* <property name="featuresToEnable">
6969
* <array>
70-
* <util:constant static-field="org.codehaus.jackson.map.SerializationConfig$Feature.WRAP_ROOT_VALUE"/>
71-
* <util:constant static-field="org.codehaus.jackson.map.SerializationConfig$Feature.CLOSE_CLOSEABLE"/>
70+
* <util:constant static-field="org.codehaus.jackson.map.SerializationConfig.Feature.WRAP_ROOT_VALUE"/>
71+
* <util:constant static-field="org.codehaus.jackson.map.SerializationConfig.Feature.CLOSE_CLOSEABLE"/>
7272
* </array>
7373
* </property>
7474
* <property name="featuresToDisable">
7575
* <array>
76-
* <util:constant static-field="org.codehaus.jackson.map.DeserializationConfig$Feature.USE_ANNOTATIONS"/>
76+
* <util:constant static-field="org.codehaus.jackson.map.DeserializationConfig.Feature.USE_ANNOTATIONS"/>
7777
* </array>
7878
* </property>
7979
* </bean>

0 commit comments

Comments
 (0)