Update of /cvsroot/springframework/spring/src/org/springframework/web/util
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4919/src/org/springframework/web/util
Modified Files:
WebUtils.java
Log Message:
polishing
Index: WebUtils.java
===================================================================
RCS file: /cvsroot/springframework/spring/src/org/springframework/web/util/WebUtils.java,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -d -r1.49 -r1.50
*** WebUtils.java 20 Nov 2008 23:33:21 -0000 1.49
--- WebUtils.java 27 Nov 2008 18:04:35 -0000 1.50
***************
*** 470,473 ****
--- 470,474 ----
public static void exposeRequestAttributes(ServletRequest request, Map attributes) {
Assert.notNull(request, "Request must not be null");
+ Assert.notNull(attributes, "Attributes Map must not be null");
Iterator it = attributes.entrySet().iterator();
while (it.hasNext()) {
|