User: fleury
Date: 00/08/09 18:15:29
Modified: src/main/org/jboss/ejb/plugins/jrmp/interfaces
HomeProxy.java
Log:
Wrong number of arguments for the remove method
Revision Changes Path
1.11 +2 -2
jboss/src/main/org/jboss/ejb/plugins/jrmp/interfaces/HomeProxy.java
Index: HomeProxy.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/plugins/jrmp/interfaces/HomeProxy.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- HomeProxy.java 2000/08/08 22:12:25 1.10
+++ HomeProxy.java 2000/08/10 01:15:29 1.11
@@ -23,7 +23,7 @@
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
* @author <a href="mailto:[EMAIL PROTECTED]">Marc Fleury</a>
- * @version $Revision: 1.10 $
+ * @version $Revision: 1.11 $
*/
public class HomeProxy
extends GenericProxy
@@ -52,7 +52,7 @@
removeByHandle = EJBHome.class.getMethod("remove", new Class[]
{Handle.class});
removeByPrimaryKey = EJBHome.class.getMethod("remove", new Class[]
{Object.class});
// Get the "remove" method from the EJBObject
- removeObject = EJBObject.class.getMethod("remove", new Class[]
{Object.class});
+ removeObject = EJBObject.class.getMethod("remove", new Class[0]);
// Object methods
toStr = Object.class.getMethod("toString", new Class[0]);