Skip to content

Commit 402a3b8

Browse files
committed
Fix javadoc
1 parent 3f130a1 commit 402a3b8

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

spring-messaging/src/main/java/org/springframework/messaging/simp/handler/AnnotationMethodMessageHandler.java

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,10 @@ public void setMessageConverter(MessageConverter<?> converter) {
138138
}
139139

140140
/**
141-
* Sets the custom list of {@code HandlerMethodArgumentResolver}s that will be used as
142-
* the <em>first</em> argument resolvers when resolving the values of the mapped
143-
* methods.
141+
* Sets the list of custom {@code HandlerMethodArgumentResolver}s that will be used
142+
* after resolvers for supported argument type.
144143
*
145-
* @param customArgumentResolvers the custom argument resolvers to be used first;
146-
* never {@code null}.
144+
* @param customArgumentResolvers the list of resolvers; never {@code null}.
147145
*/
148146
public void setCustomArgumentResolvers(List<HandlerMethodArgumentResolver> customArgumentResolvers) {
149147
Assert.notNull(customArgumentResolvers, "The 'customArgumentResolvers' cannot be null.");
@@ -152,10 +150,9 @@ public void setCustomArgumentResolvers(List<HandlerMethodArgumentResolver> custo
152150

153151
/**
154152
* Set the list of custom {@code HandlerMethodReturnValueHandler}s that will be used
155-
* as the <em>first</em> return value handlers when handling the method return values.
153+
* after return value handlers for known types.
156154
*
157-
* @param customReturnValueHandlers the custom return value resolvers that will be
158-
* used first; never {@code null}.
155+
* @param customReturnValueHandlers the list of custom return value handlers, never {@code null}.
159156
*/
160157
public void setCustomReturnValueHandlers(List<HandlerMethodReturnValueHandler> customReturnValueHandlers) {
161158
Assert.notNull(customReturnValueHandlers, "The 'customReturnValueHandlers' cannot be null.");

0 commit comments

Comments
 (0)