SPR-8561 Permit null values for simple controller method arguments types without annotations.

This commit is contained in:
Rossen Stoyanchev
2011-07-26 12:36:01 +00:00
parent 3a6beb601e
commit 75ad185558
2 changed files with 10 additions and 1 deletions

View File

@@ -194,7 +194,7 @@ public class RequestParamMethodArgumentResolver extends AbstractNamedValueMethod
private class RequestParamNamedValueInfo extends NamedValueInfo {
private RequestParamNamedValueInfo() {
super("", true, ValueConstants.DEFAULT_NONE);
super("", false, ValueConstants.DEFAULT_NONE);
}
private RequestParamNamedValueInfo(RequestParam annotation) {