[cvs]
expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/controller
SecureRequestUtils.java
JCorporate Ltd
jcorp at jcorp2.servlets.net
Fri May 21 17:47:03 PDT 2004
Update of /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/controller
In directory jcorp2.servlets.net:/tmp/cvs-serv9100/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/controller
Modified Files:
SecureRequestUtils.java
Log Message:
remove 'enum' as a variable name
Index: SecureRequestUtils.java
===================================================================
RCS file: /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/controller/SecureRequestUtils.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** SecureRequestUtils.java 10 Oct 2003 23:46:27 -0000 1.6
--- SecureRequestUtils.java 22 May 2004 00:47:01 -0000 1.7
***************
*** 101,105 ****
* @param desiredPort The port number to be used in th enew URL
* @return The new URL as a StringBuffer
- * @keep
*/
private static StringBuffer startNewUrlString(HttpServletRequest request, String desiredScheme, String desiredPort) {
--- 101,104 ----
***************
*** 182,186 ****
* @return true, if the attributes were stowed in the session,
* false otherwise
- * @keep
*/
public static boolean stowRequestAttributes(HttpServletRequest aRequest) {
--- 181,184 ----
***************
*** 190,197 ****
}
! Enumeration enum = aRequest.getAttributeNames();
Map map = new HashMap();
! while (enum.hasMoreElements()) {
! String name = (String) enum.nextElement();
map.put(name, aRequest.getAttribute(name));
}
--- 188,195 ----
}
! Enumeration anEnum = aRequest.getAttributeNames();
Map map = new HashMap();
! while (anEnum.hasMoreElements()) {
! String name = (String) anEnum.nextElement();
map.put(name, aRequest.getAttribute(name));
}
***************
*** 206,210 ****
* @param doRemove True, if the attributes should be removed after being reclaimed,
* false otherwise
- * @keep
*/
public static void reclaimRequestAttributes(HttpServletRequest aRequest,
--- 204,207 ----
More information about the cvs
mailing list