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

Gavin King gavin.king at jboss.com
Fri Nov 17 11:50:44 EST 2006


  User: gavin   
  Date: 06/11/17 11:50:44

  Modified:    src/main/org/jboss/seam/remoting   ExecutionHandler.java
                        SubscriptionHandler.java
  Log:
  fix compile error
  
  Revision  Changes    Path
  1.19      +1 -1      jboss-seam/src/main/org/jboss/seam/remoting/ExecutionHandler.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ExecutionHandler.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/remoting/ExecutionHandler.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -b -r1.18 -r1.19
  --- ExecutionHandler.java	3 Nov 2006 22:47:25 -0000	1.18
  +++ ExecutionHandler.java	17 Nov 2006 16:50:44 -0000	1.19
  @@ -76,7 +76,7 @@
         Lifecycle.setServletRequest(request);
         Lifecycle.beginRequest(servletContext, session, request);
   
  -      Manager.instance().restoreAndLockConversation( ctx.getConversationId(), false );
  +      Manager.instance().restoreConversation( ctx.getConversationId() );
         Lifecycle.resumeConversation(session);
   
         // Extract the calls from the request
  
  
  
  1.10      +1 -1      jboss-seam/src/main/org/jboss/seam/remoting/SubscriptionHandler.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SubscriptionHandler.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/remoting/SubscriptionHandler.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- SubscriptionHandler.java	25 Oct 2006 15:14:36 -0000	1.9
  +++ SubscriptionHandler.java	17 Nov 2006 16:50:44 -0000	1.10
  @@ -71,7 +71,7 @@
         Lifecycle.setServletRequest(request);
         Lifecycle.beginRequest(servletContext, session, request);
   
  -      Manager.instance().restoreAndLockConversation( (String) null, false );
  +      Manager.instance().initializeTemporaryConversation();
         Lifecycle.resumeConversation(session);
   
         for (SubscriptionRequest req : requests)
  
  
  



More information about the jboss-cvs-commits mailing list