You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2005/08/31 12:36:46 UTC

svn commit: r265007 - /myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java

Author: mmarinschek
Date: Wed Aug 31 03:36:40 2005
New Revision: 265007

URL: http://svn.apache.org/viewcvs?rev=265007&view=rev
Log:
fix for MYFACES-463

Modified:
    myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java

Modified: myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java?rev=265007&r1=265006&r2=265007&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java Wed Aug 31 03:36:40 2005
@@ -263,4 +263,14 @@
     {
         return _attributes;
     }
+
+    public boolean equals(Object obj)
+    {
+        return _attributes.equals(obj);
+    }
+
+    public int hashCode()
+    {
+        return _attributes.hashCode();
+    }
 }