* Make isXmlRpc() synchronized.

This commit is contained in:
hns 2005-10-18 15:39:07 +00:00
parent d2b9023500
commit 34eaf86d50

View file

@ -111,7 +111,7 @@ public class RequestTrans implements Serializable {
*
* @return true if this might be an XML-RPC request.
*/
public boolean isXmlRpc() {
public synchronized boolean isXmlRpc() {
return isXmlRpc;
}