From: Juergen H. <jho...@us...> - 2008-11-19 16:46:01
|
Update of /cvsroot/springframework/spring/src/org/springframework/web/context/request In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14293/src/org/springframework/web/context/request Modified Files: FacesRequestAttributes.java Log Message: fixed FacesRequestAttributes getAttributeNames to expose keys rather than entries Index: FacesRequestAttributes.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/web/context/request/FacesRequestAttributes.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FacesRequestAttributes.java 20 Feb 2008 12:38:19 -0000 1.1 --- FacesRequestAttributes.java 19 Nov 2008 16:45:52 -0000 1.2 *************** *** 114,118 **** public String[] getAttributeNames(int scope) { ! return StringUtils.toStringArray(getAttributeMap(scope).entrySet()); } --- 114,118 ---- public String[] getAttributeNames(int scope) { ! return StringUtils.toStringArray(getAttributeMap(scope).keySet()); } |