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

Gavin King gavin.king at jboss.com
Fri Nov 3 17:47:24 EST 2006


  User: gavin   
  Date: 06/11/03 17:47:24

  Modified:    src/main/org/jboss/seam/contexts  Lifecycle.java
  Log:
  decoupled the endRequest() processing in Manager from storing stuff in the ViewRoot
  
  Revision  Changes    Path
  1.63      +1 -23     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.62
  retrieving revision 1.63
  diff -u -b -r1.62 -r1.63
  --- Lifecycle.java	3 Nov 2006 02:32:38 -0000	1.62
  +++ Lifecycle.java	3 Nov 2006 22:47:24 -0000	1.63
  @@ -31,7 +31,7 @@
   /**
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.62 $
  + * @version $Revision: 1.63 $
    */
   public class Lifecycle
   {
  @@ -231,28 +231,6 @@
         Contexts.applicationContext.set(null);
      }
   
  -   public static void flushClientConversation()
  -   {
  -      boolean flushNeeded = Contexts.isConversationContextActive() &&
  -            !Seam.isSessionInvalid() &&
  -            Init.instance().isClientSideConversations();
  -
  -      if ( flushNeeded )
  -      {
  -         log.debug("flushing client-side conversation context");
  -         Contexts.getConversationContext().flush();
  -      }
  -   }
  -
  -   public static void flushPage()
  -   {
  -      if ( Contexts.isPageContextActive() )
  -      {
  -         log.debug("flushing page context");
  -         Contexts.getPageContext().flush();
  -      }
  -   }
  -
      public static void endRequest(ExternalContext externalContext) {
   
         log.debug("After render response, destroying contexts");
  
  
  



More information about the jboss-cvs-commits mailing list