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

Peter Muir peter at bleepbleep.org.uk
Mon Jan 14 07:26:14 EST 2008


  User: pmuir   
  Date: 08/01/14 07:26:14

  Modified:    src/main/org/jboss/seam/init  Initialization.java
  Log:
  Tidy up and javadoc
  
  Revision  Changes    Path
  1.202     +3 -3      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.201
  retrieving revision 1.202
  diff -u -b -r1.201 -r1.202
  --- Initialization.java	14 Jan 2008 11:29:55 -0000	1.201
  +++ Initialization.java	14 Jan 2008 12:26:14 -0000	1.202
  @@ -43,7 +43,7 @@
   import org.jboss.seam.core.Init;
   import org.jboss.seam.core.PojoCache;
   import org.jboss.seam.deployment.HotDeploymentStrategy;
  -import org.jboss.seam.deployment.SimpleDeploymentStrategy;
  +import org.jboss.seam.deployment.StandardDeploymentStrategy;
   import org.jboss.seam.log.LogProvider;
   import org.jboss.seam.log.Logging;
   import org.jboss.seam.util.Conversions;
  @@ -75,7 +75,7 @@
      private Map<String, EventListenerDescriptor> eventListenerDescriptors = new HashMap<String, EventListenerDescriptor>();
      private Collection<String> globalImports = new ArrayList<String>();
      
  -   private SimpleDeploymentStrategy deploymentStrategy;
  +   private StandardDeploymentStrategy deploymentStrategy;
      private HotDeploymentStrategy hotDeploymentStrategy;
      
      private Set<String> nonPropertyAttributes = new HashSet<String>();
  @@ -98,7 +98,7 @@
      
      public Initialization create()
      {
  -      deploymentStrategy = new SimpleDeploymentStrategy(Thread.currentThread().getContextClassLoader());
  +      deploymentStrategy = new StandardDeploymentStrategy(Thread.currentThread().getContextClassLoader());
         deploymentStrategy.scan();
         addNamespaces();
         initComponentsFromXmlDocument("/WEB-INF/components.xml");
  
  
  



More information about the jboss-cvs-commits mailing list