You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2008/04/04 08:46:32 UTC

svn commit: r644626 - /myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/_ComponentAttributesMap.java

Author: imario
Date: Thu Apr  3 23:46:21 2008
New Revision: 644626

URL: http://svn.apache.org/viewvc?rev=644626&view=rev
Log:
previous commit was just the reformat :-( *grrrr*
MYFACES-1850: quick fix for attributes problem with server side state saving and "serialize stat in session"=false. Will think about something more performant asap.

Modified:
    myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/_ComponentAttributesMap.java

Modified: myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/_ComponentAttributesMap.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/_ComponentAttributesMap.java?rev=644626&r1=644625&r2=644626&view=diff
==============================================================================
--- myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/_ComponentAttributesMap.java (original)
+++ myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/_ComponentAttributesMap.java Thu Apr  3 23:46:21 2008
@@ -90,7 +90,7 @@
     _ComponentAttributesMap(UIComponent component, Map<Object, Object> attributes)
     {
         _component = component;
-        _attributes = attributes;
+        _attributes = new HashMap(attributes);
     }
 
     /**