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

Gavin King gavin.king at jboss.com
Tue Jul 25 21:29:21 EDT 2006


  User: gavin   
  Date: 06/07/25 21:29:21

  Modified:    src/main/org/jboss/seam/contexts  Lifecycle.java
  Log:
  don't unwrap startup components
  
  Revision  Changes    Path
  1.44      +3 -2      jboss-seam/src/main/org/jboss/seam/contexts/Lifecycle.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Lifecycle.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/Lifecycle.java,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -b -r1.43 -r1.44
  --- Lifecycle.java	27 Jun 2006 11:29:58 -0000	1.43
  +++ Lifecycle.java	26 Jul 2006 01:29:21 -0000	1.44
  @@ -25,7 +25,7 @@
   /**
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.43 $
  + * @version $Revision: 1.44 $
    */
   public class Lifecycle
   {
  @@ -122,7 +122,8 @@
               }
            }
         }
  -      Component.getInstance( component.getName(), component.getScope(), true );
  +      log.info("starting up: " + component.getName());
  +      component.newInstance();
      }
   
      public static void endApplication(ServletContext servletContext)
  
  
  



More information about the jboss-cvs-commits mailing list