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

Shane Bryzak sbryzak at redhat.com
Tue Jul 3 20:33:57 EDT 2007


  User: sbryzak2
  Date: 07/07/03 20:33:57

  Modified:    src/remoting/org/jboss/seam/remoting  ExecutionHandler.java
  Log:
  JBSEAM-1599
  
  Revision  Changes    Path
  1.8       +3 -3      jboss-seam/src/remoting/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/remoting/org/jboss/seam/remoting/ExecutionHandler.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- ExecutionHandler.java	22 Jun 2007 16:01:05 -0000	1.7
  +++ ExecutionHandler.java	4 Jul 2007 00:33:57 -0000	1.8
  @@ -53,16 +53,16 @@
         // Parse the incoming request as XML
         SAXReader xmlReader = new SAXReader();
         Document doc = xmlReader.read( request.getInputStream() );
  -      Element env = doc.getRootElement();
  +      final Element env = doc.getRootElement();
         final RequestContext ctx = unmarshalContext(env);
  -      final List<Call> calls = unmarshalCalls(env);
   
         new ContextualHttpServletRequest(request)
         {
  -         
            @Override
            public void process() throws Exception
            {
  +            final List<Call> calls = unmarshalCalls(env);
  +            
               // Extract the calls from the request
   
               // Execute each of the calls
  
  
  



More information about the jboss-cvs-commits mailing list