Fixed bug in asynchronous client, although this is untested and

unused code. Eventually we'll have to switch to Apache
XML-RPC since this is where bugs will get fixed from now on.
This commit is contained in:
hns 2001-12-07 16:16:11 +00:00
parent d141d65585
commit 7ee29bfdc3

View file

@ -1,4 +1,4 @@
/**
/**
* Copyright 1999 Hannes Wallnoefer
* Implements a XML-RPC client. See http://www.xmlrpc.com/
*/
@ -200,7 +200,7 @@ public class XmlRpcClient implements XmlRpcHandler {
runAsync (call.method, call.params, call.callback);
call = dequeue ();
}
releaseWorker (this, false);
releaseWorker (this, true);
}
void runAsync (String method, Vector params, AsyncCallback callback) {