Skip to content

Commit 7665424

Browse files
committed
Polishing contribution
Closes gh-27888
1 parent f63a106 commit 7665424

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

spring-messaging/src/main/java/org/springframework/messaging/handler/invocation/HandlerMethodArgumentResolverComposite.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2020 the original author or authors.
2+
* Copyright 2002-2022 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.
@@ -84,7 +84,7 @@ public List<HandlerMethodArgumentResolver> getResolvers() {
8484
}
8585

8686
/**
87-
* Clear the list of configured resolvers.
87+
* Clear the list of configured resolvers and the resolver cache.
8888
*/
8989
public void clear() {
9090
this.argumentResolvers.clear();

spring-messaging/src/main/java/org/springframework/messaging/handler/invocation/reactive/HandlerMethodArgumentResolverComposite.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2020 the original author or authors.
2+
* Copyright 2002-2022 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.
@@ -86,7 +86,7 @@ public List<HandlerMethodArgumentResolver> getResolvers() {
8686
}
8787

8888
/**
89-
* Clear the list of configured resolvers.
89+
* Clear the list of configured resolvers and the resolver cache.
9090
*/
9191
public void clear() {
9292
this.argumentResolvers.clear();

spring-web/src/main/java/org/springframework/web/method/support/HandlerMethodArgumentResolverComposite.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2020 the original author or authors.
2+
* Copyright 2002-2022 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.
@@ -85,7 +85,7 @@ public List<HandlerMethodArgumentResolver> getResolvers() {
8585
}
8686

8787
/**
88-
* Clear the list of configured resolvers.
88+
* Clear the list of configured resolvers and the resolver cache.
8989
* @since 4.3
9090
*/
9191
public void clear() {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2020 the original author or authors.
2+
* Copyright 2002-2022 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.
@@ -83,7 +83,7 @@ public List<HandlerMethodArgumentResolver> getResolvers() {
8383
}
8484

8585
/**
86-
* Clear the list of configured resolvers.
86+
* Clear the list of configured resolvers and the resolver cache.
8787
*/
8888
public void clear() {
8989
this.argumentResolvers.clear();

0 commit comments

Comments
 (0)