Author: [email protected]
Date: 2011-09-14 15:49:59 -0400 (Wed, 14 Sep 2011)
New Revision: 14188

Modified:
   
branches/enterprise/JBPAPP_5_1_1_JBPAPP-7202/src/main/org/jboss/seam/Component.java
Log:
Changed HashSet to LinkedHashSet for the Business interfaces

Modified: 
branches/enterprise/JBPAPP_5_1_1_JBPAPP-7202/src/main/org/jboss/seam/Component.java
===================================================================
--- 
branches/enterprise/JBPAPP_5_1_1_JBPAPP-7202/src/main/org/jboss/seam/Component.java
 2011-09-14 19:45:06 UTC (rev 14187)
+++ 
branches/enterprise/JBPAPP_5_1_1_JBPAPP-7202/src/main/org/jboss/seam/Component.java
 2011-09-14 19:49:59 UTC (rev 14188)
@@ -1834,7 +1834,7 @@
 
    public static Set<Class> getBusinessInterfaces(Class clazz)
    {
-      Set<Class> result = new HashSet<Class>();
+      Set<Class> result = new LinkedHashSet<Class>();
 
       if ( clazz.isAnnotationPresent(LOCAL) )
       {

_______________________________________________
seam-commits mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/seam-commits

Reply via email to