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:42:41 UTC

svn commit: r599972 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java

Author: bommel
Date: Fri Nov 30 13:42:40 2007
New Revision: 599972

URL: http://svn.apache.org/viewvc?rev=599972&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/component/UIPage.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java?rev=599972&r1=599971&r2=599972&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java Fri Nov 30 13:42:40 2007
@@ -44,7 +44,6 @@
 import java.util.List;
 import java.util.Set;
 import java.util.StringTokenizer;
-import java.util.TreeSet;
 
 public class UIPage extends UIForm {
 
@@ -104,7 +103,7 @@
     onunloadScripts = new ListOrderedSet();
     onexitScripts = new ListOrderedSet();
     onsubmitScripts = new ListOrderedSet();
-    popups = new TreeSet<UIPopup>();
+    popups = new ListOrderedSet();
   }
 
   @Override