You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by he...@apache.org on 2006/05/01 17:05:36 UTC

svn commit: r398614 - /incubator/webwork2/action/src/main/java/org/apache/struts/action2/portlet/PortletRequestMap.java

Author: hermanns
Date: Mon May  1 08:05:36 2006
New Revision: 398614

URL: http://svn.apache.org/viewcvs?rev=398614&view=rev
Log:
RequestMap not clearing entries when RequestMap.entries is called.
Issue Number: WW-1271

Modified:
    incubator/webwork2/action/src/main/java/org/apache/struts/action2/portlet/PortletRequestMap.java

Modified: incubator/webwork2/action/src/main/java/org/apache/struts/action2/portlet/PortletRequestMap.java
URL: http://svn.apache.org/viewcvs/incubator/webwork2/action/src/main/java/org/apache/struts/action2/portlet/PortletRequestMap.java?rev=398614&r1=398613&r2=398614&view=diff
==============================================================================
--- incubator/webwork2/action/src/main/java/org/apache/struts/action2/portlet/PortletRequestMap.java (original)
+++ incubator/webwork2/action/src/main/java/org/apache/struts/action2/portlet/PortletRequestMap.java Mon May  1 08:05:36 2006
@@ -63,6 +63,7 @@
      * map.
      */
     public void clear() {
+        entries = null;
         Enumeration keys = request.getAttributeNames();
 
         while (keys.hasMoreElements()) {