User: fleury
Date: 00/07/06 00:53:48
Modified: src/main/org/jboss/ejb/plugins/jrmp/interfaces
StatefulSessionProxy.java
Log:
typos corrected.
Revision Changes Path
1.9 +3 -2
jboss/src/main/org/jboss/ejb/plugins/jrmp/interfaces/StatefulSessionProxy.java
Index: StatefulSessionProxy.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/plugins/jrmp/interfaces/StatefulSessionProxy.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- StatefulSessionProxy.java 2000/06/21 11:51:33 1.8
+++ StatefulSessionProxy.java 2000/07/06 07:53:48 1.9
@@ -19,7 +19,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.8 $
+ * @version $Revision: 1.9 $
*/
public class StatefulSessionProxy
extends GenericProxy
@@ -62,7 +62,8 @@
RemoteMethodInvocation rmi = new RemoteMethodInvocation(id, m, args);
if (tm != null)
rmi.setTransaction(tm.getTransaction());
- return ((MarshalledObject)container.invoke(new
MarshalledObject(rmi))).get();
+
+ return container.invoke(new MarshalledObject(rmi));
}
}