[jboss-cvs] jboss-seam/src/main/org/jboss/seam/init ...

Gavin King gavin.king at jboss.com
Thu Mar 8 21:29:22 EST 2007


  User: gavin   
  Date: 07/03/08 21:29:21

  Modified:    src/main/org/jboss/seam/init  Initialization.java
  Log:
  order the startup log by alpha
  
  Revision  Changes    Path
  1.161     +3 -2      jboss-seam/src/main/org/jboss/seam/init/Initialization.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Initialization.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/init/Initialization.java,v
  retrieving revision 1.160
  retrieving revision 1.161
  diff -u -b -r1.160 -r1.161
  --- Initialization.java	7 Mar 2007 21:57:21 -0000	1.160
  +++ Initialization.java	9 Mar 2007 02:29:21 -0000	1.161
  @@ -21,6 +21,7 @@
   import java.util.Set;
   import java.util.SortedSet;
   import java.util.StringTokenizer;
  +import java.util.TreeMap;
   import java.util.TreeSet;
   
   import javax.servlet.Filter;
  @@ -61,7 +62,7 @@
   /**
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.160 $
  + * @version $Revision: 1.161 $
    */
   public class Initialization
   {
  @@ -70,7 +71,7 @@
   
      private ServletContext servletContext;
      private Map<String, Conversions.PropertyValue> properties = new HashMap<String, Conversions.PropertyValue>();
  -   private Map<String, SortedSet<ComponentDescriptor>> componentDescriptors = new HashMap<String, SortedSet<ComponentDescriptor>>();
  +   private Map<String, SortedSet<ComponentDescriptor>> componentDescriptors = new TreeMap<String, SortedSet<ComponentDescriptor>>();
      private List<FactoryDescriptor> factoryDescriptors = new ArrayList<FactoryDescriptor>();
      private Set<Class> installedComponentClasses = new HashSet<Class>();
      private Set<String> importedPackages = new HashSet<String>();
  
  
  



More information about the jboss-cvs-commits mailing list