You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/11/30 22:53:31 UTC

svn commit: r599976 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTag.java

Author: bommel
Date: Fri Nov 30 13:53:30 2007
New Revision: 599976

URL: http://svn.apache.org/viewvc?rev=599976&view=rev
Log:
(TOBAGO-562) List of Popup in UIPage should be a Set

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTag.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTag.java?rev=599976&r1=599975&r2=599976&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTag.java Fri Nov 30 13:53:30 2007
@@ -57,11 +57,12 @@
     UIPage page = (UIPage) getComponentInstance();
     // TODO is this required?
     // clear popups;
+    int result = super.doEndTag();
     page.getPopups().clear();
 
     // reseting doctype and charset
     doctype = "loose";
-    return super.doEndTag();
+    return result;
   }
 
   public String getComponentType() {