Skip to content

Commit 28c5d7b

Browse files
committed
Merge branch '5.1.x'
2 parents d45f7c4 + 053b95c commit 28c5d7b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public Jackson2ObjectMapperBuilder filters(FilterProvider filters) {
303303
* @param mixinSource class (or interface) whose annotations are to be "added"
304304
* to target's annotations as value
305305
* @since 4.1.2
306-
* @see com.fasterxml.jackson.databind.ObjectMapper#addMixInAnnotations(Class, Class)
306+
* @see com.fasterxml.jackson.databind.ObjectMapper#addMixIn(Class, Class)
307307
*/
308308
public Jackson2ObjectMapperBuilder mixIn(Class<?> target, Class<?> mixinSource) {
309309
this.mixIns.put(target, mixinSource);
@@ -316,7 +316,7 @@ public Jackson2ObjectMapperBuilder mixIn(Class<?> target, Class<?> mixinSource)
316316
* to effectively override as key and mix-in classes (or interface) whose
317317
* annotations are to be "added" to target's annotations as value.
318318
* @since 4.1.2
319-
* @see com.fasterxml.jackson.databind.ObjectMapper#addMixInAnnotations(Class, Class)
319+
* @see com.fasterxml.jackson.databind.ObjectMapper#addMixIn(Class, Class)
320320
*/
321321
public Jackson2ObjectMapperBuilder mixIns(Map<Class<?>, Class<?>> mixIns) {
322322
this.mixIns.putAll(mixIns);

spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ public class InvocableHandlerMethod extends HandlerMethod {
6666

6767
private ReactiveAdapterRegistry reactiveAdapterRegistry = ReactiveAdapterRegistry.getSharedInstance();
6868

69+
6970
/**
7071
* Create an instance from a {@code HandlerMethod}.
7172
*/
@@ -113,8 +114,8 @@ public ParameterNameDiscoverer getParameterNameDiscoverer() {
113114
}
114115

115116
/**
116-
* Configure a reactive registry. This is needed for cases where the response is fully
117-
* handled within the controller in combination with an async void return value.
117+
* Configure a reactive adapter registry. This is needed for cases where the response is
118+
* fully handled within the controller in combination with an async void return value.
118119
* <p>By default this is a {@link ReactiveAdapterRegistry} with default settings.
119120
*/
120121
public void setReactiveAdapterRegistry(ReactiveAdapterRegistry registry) {
@@ -127,7 +128,7 @@ public void setReactiveAdapterRegistry(ReactiveAdapterRegistry registry) {
127128
* @param exchange the current exchange
128129
* @param bindingContext the binding context to use
129130
* @param providedArgs optional list of argument values to match by type
130-
* @return a Mono with a {@link HandlerResult}.
131+
* @return a Mono with a {@link HandlerResult}
131132
*/
132133
@SuppressWarnings("KotlinInternalInJava")
133134
public Mono<HandlerResult> invoke(

0 commit comments

Comments
 (0)