User: fleury
Date: 00/09/26 11:36:10
Modified: src/main/org/jboss/ejb StatelessSessionContainer.java
Log:
no need to hook before invocation
Revision Changes Path
1.11 +5 -3 jboss/src/main/org/jboss/ejb/StatelessSessionContainer.java
Index: StatelessSessionContainer.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/StatelessSessionContainer.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- StatelessSessionContainer.java 2000/08/18 03:20:54 1.10
+++ StatelessSessionContainer.java 2000/09/26 18:36:10 1.11
@@ -28,7 +28,7 @@
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
* @author <a href="[EMAIL PROTECTED]">Marc Fleury</a>
-* @version $Revision: 1.10 $
+* @version $Revision: 1.11 $
*/
public class StatelessSessionContainer
extends Container
@@ -438,8 +438,10 @@
else throw (Error)ex;
}
} else // we have a method that needs to be done by a bean instance
- {
- // Invoke and handle exceptions
+ {
+ // MF FIXME we don't need to wire the Transaction to the
context?
+
+ // Invoke and handle exceptions
try
{
return m.invoke(mi.getEnterpriseContext().getInstance(),
mi.getArguments());