[jboss-cvs] JBossAS SVN: r79472 - projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/stateful.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 14 12:48:55 EDT 2008


Author: ALRubinger
Date: 2008-10-14 12:48:55 -0400 (Tue, 14 Oct 2008)
New Revision: 79472

Modified:
   projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/stateful/StatefulContainer.java
Log:
[EJBTHREE-1241] Fix a CCE shown in ejbcontext tests

Modified: projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/stateful/StatefulContainer.java
===================================================================
--- projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/stateful/StatefulContainer.java	2008-10-14 16:46:25 UTC (rev 79471)
+++ projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/stateful/StatefulContainer.java	2008-10-14 16:48:55 UTC (rev 79472)
@@ -441,9 +441,9 @@
             
             SerializableMethod invoked = new SerializableMethod(method, method.getClass());
             
-            //StatefulContainerInvocation nextInvocation = new StatefulContainerInvocation(info, id);
-            StatefulSessionContainerMethodInvocation nextInvocation = new StatefulSessionContainerMethodInvocation(info);
-            nextInvocation.setSessionId(id);
+            StatefulContainerInvocation nextInvocation = new StatefulContainerInvocation(info, id);
+            //StatefulSessionContainerMethodInvocation nextInvocation = new StatefulSessionContainerMethodInvocation(info);
+            //nextInvocation.setSessionId(id);
             nextInvocation.setAdvisor(getAdvisor());
             nextInvocation.setArguments(args);
             




More information about the jboss-cvs-commits mailing list