Skip to content

Commit

Permalink
Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoyanchev committed Aug 27, 2013
1 parent 3f130a1 commit 402a3b8
Showing 1 changed file with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,10 @@ public void setMessageConverter(MessageConverter<?> converter) {
}

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

/**
* Set the list of custom {@code HandlerMethodReturnValueHandler}s that will be used
* as the <em>first</em> return value handlers when handling the method return values.
* after return value handlers for known types.
*
* @param customReturnValueHandlers the custom return value resolvers that will be
* used first; never {@code null}.
* @param customReturnValueHandlers the list of custom return value handlers, never {@code null}.
*/
public void setCustomReturnValueHandlers(List<HandlerMethodReturnValueHandler> customReturnValueHandlers) {
Assert.notNull(customReturnValueHandlers, "The 'customReturnValueHandlers' cannot be null.");
Expand Down

0 comments on commit 402a3b8

Please sign in to comment.