[jboss-cvs] JBossAS SVN: r58057 - trunk/ejb3/src/main/org/jboss/ejb3/stateful

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Nov 3 01:45:41 EST 2006


Author: bill.burke at jboss.com
Date: 2006-11-03 01:45:36 -0500 (Fri, 03 Nov 2006)
New Revision: 58057

Modified:
   trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulContainer.java
Log:
fix URL so that JarEntry urls come out correctly.

Modified: trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulContainer.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulContainer.java	2006-11-03 06:12:00 UTC (rev 58056)
+++ trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulContainer.java	2006-11-03 06:45:36 UTC (rev 58057)
@@ -132,7 +132,6 @@
    /**
     * Performs a synchronous or asynchronous local invocation
     *
-    * @param provider If null a synchronous invocation, otherwise an asynchronous
     */
    public Object localHomeInvoke(Method method, Object[] args) throws Throwable
    {
@@ -349,7 +348,8 @@
             {
                exception = new ForwardId(throwable, newId);
             }
-            Map responseContext = newSi.getResponseContextInfo();
+            Map responseContext = null;
+            if (newSi != null) newSi.getResponseContextInfo();
             response = marshallException(invocation, exception, responseContext);
             return response;
          }




More information about the jboss-cvs-commits mailing list