[EMAIL PROTECTED] writes: ... > Index: MultiCall.java > =================================================================== > RCS file: /home/cvs/xml-rpc/src/java/org/apache/xmlrpc/MultiCall.java,v > retrieving revision 1.2 > retrieving revision 1.3 > diff -u -r1.2 -r1.3 > --- MultiCall.java 5 Dec 2002 08:49:24 -0000 1.2 > +++ MultiCall.java 21 May 2003 16:06:03 -0000 1.3 > @@ -84,6 +84,8 @@ > > public Vector multicall(Vector requests, XmlRpcContext context) > { > + // The array of calls is passed as a single parameter of type array. > + requests=(Vector)requests.elementAt(0);
Adhering to the existing style of the code in that file, the above line should look like: requests = (Vector) requests.elementAt(0); -- Daniel Rall