dlr 2005/04/28 02:00:33
Modified: src/java/org/apache/xmlrpc CommonsXmlRpcTransport.java Log: * src/java/org/apache/xmlrpc/CommonsXmlRpcTransport.java (endClientRequest): Moved inline comment to JavaDoc (necessary for a public method), and corrected typo along the way. Target release: 2.0 Revision Changes Path 1.6 +7 -3 ws-xmlrpc/src/java/org/apache/xmlrpc/CommonsXmlRpcTransport.java Index: CommonsXmlRpcTransport.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/java/org/apache/xmlrpc/CommonsXmlRpcTransport.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -u -r1.5 -r1.6 --- CommonsXmlRpcTransport.java 22 Apr 2005 10:25:57 -0000 1.5 +++ CommonsXmlRpcTransport.java 28 Apr 2005 09:00:33 -0000 1.6 @@ -178,10 +178,14 @@ client.getState().setCredentials(null, null, creds); } + /** + * Releases connection resources. + * + * @exception XmlRpcClientException + */ public void endClientRequest() - throws XmlRpcClientException + throws XmlRpcClientException { - // Rlease connection resources method.releaseConnection(); } }