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

Gavin King gavin.king at jboss.com
Mon Mar 26 22:24:20 EDT 2007


  User: gavin   
  Date: 07/03/26 22:24:20

  Modified:    src/main/org/jboss/seam/core  Manager.java
  Log:
  apply page parameters as soon as possible, since it works better with Home.isManaged()
  
  Revision  Changes    Path
  1.161     +4 -4      jboss-seam/src/main/org/jboss/seam/core/Manager.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Manager.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Manager.java,v
  retrieving revision 1.160
  retrieving revision 1.161
  diff -u -b -r1.160 -r1.161
  --- Manager.java	26 Mar 2007 17:53:57 -0000	1.160
  +++ Manager.java	27 Mar 2007 02:24:19 -0000	1.161
  @@ -45,7 +45,7 @@
    *
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.160 $
  + * @version $Revision: 1.161 $
    */
   @Scope(ScopeType.EVENT)
   @Name("org.jboss.seam.core.manager")
  @@ -62,7 +62,7 @@
      //Is the current conversation "long-running"?
      private boolean isLongRunningConversation;
      
  -   private boolean updateModelValuesCalled;
  +   //private boolean updateModelValuesCalled;
   
      private boolean controllingRedirect;
      
  @@ -1187,7 +1187,7 @@
         this.conversationIsLongRunningParameter = conversationIdLongRunning;
      }
   
  -   public boolean isUpdateModelValuesCalled()
  +   /*public boolean isUpdateModelValuesCalled()
      {
         return updateModelValuesCalled;
      }
  @@ -1195,7 +1195,7 @@
      public void setUpdateModelValuesCalled(boolean updateModelValuesCalled)
      {
         this.updateModelValuesCalled = updateModelValuesCalled;
  -   }
  +   }*/
   
      public int getConcurrentRequestTimeout()
      {
  
  
  



More information about the jboss-cvs-commits mailing list