You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2008/06/19 18:51:38 UTC

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

Author: lu4242
Date: Thu Jun 19 09:51:37 2008
New Revision: 669557

URL: http://svn.apache.org/viewvc?rev=669557&view=rev
Log:
MYFACES-1881 UIViewRoot setId called on UIComponentClassicTagBase throws UnsupportedOperationException (comment and call super.xxx)

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

Modified: myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UIViewRoot.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UIViewRoot.java?rev=669557&r1=669556&r2=669557&view=diff
==============================================================================
--- myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UIViewRoot.java (original)
+++ myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UIViewRoot.java Thu Jun 19 09:51:37 2008
@@ -455,12 +455,14 @@
    */
   public void setId(String id)
   {
-     throw new UnsupportedOperationException();
+     //throw new UnsupportedOperationException();
+     super.setId(id);
   }
 
   public String getId()
   {
-  	return null;
+  	//return null;
+    return super.getId();
   }
 
   /**