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

Gavin King gavin.king at jboss.com
Tue Jan 23 14:00:36 EST 2007


  User: gavin   
  Date: 07/01/23 14:00:35

  Modified:    src/main/org/jboss/seam  Seam.java
  Log:
  fixed typo
  have a conversation context during startup
  create Events earlier
  
  Revision  Changes    Path
  1.27      +3 -3      jboss-seam/src/main/org/jboss/seam/Seam.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Seam.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/Seam.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -b -r1.26 -r1.27
  --- Seam.java	13 Dec 2006 04:54:19 -0000	1.26
  +++ Seam.java	23 Jan 2007 19:00:35 -0000	1.27
  @@ -1,4 +1,4 @@
  -//$Id: Seam.java,v 1.26 2006/12/13 04:54:19 gavin Exp $
  +//$Id: Seam.java,v 1.27 2007/01/23 19:00:35 gavin Exp $
   package org.jboss.seam;
   
   import static org.jboss.seam.ComponentType.ENTITY_BEAN;
  @@ -225,14 +225,14 @@
         }
         else
         {
  -         Lifecycle.beginApplication();
  +         Lifecycle.mockApplication();
            try
            {
               return Component.forName(name);
            }
            finally
            {
  -            Lifecycle.endApplication();
  +            Lifecycle.unmockApplication();
            }
         }
      }
  
  
  



More information about the jboss-cvs-commits mailing list