You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xmlrpc-dev@ws.apache.org by jo...@apache.org on 2006/07/12 23:16:15 UTC

svn commit: r421415 - in /webservices/xmlrpc/trunk: client/src/main/java/org/apache/xmlrpc/client/TimingOutCallback.java pom.xml src/changes/changes.xml

Author: jochen
Date: Wed Jul 12 14:16:15 2006
New Revision: 421415

URL: http://svn.apache.org/viewvc?rev=421415&view=rev
Log:
Added a missing "synchronized" to the TimingOutCallback.
Submitted by: Alan Burlison

Modified:
    webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/TimingOutCallback.java
    webservices/xmlrpc/trunk/pom.xml
    webservices/xmlrpc/trunk/src/changes/changes.xml

Modified: webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/TimingOutCallback.java
URL: http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/TimingOutCallback.java?rev=421415&r1=421414&r2=421415&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/TimingOutCallback.java (original)
+++ webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/TimingOutCallback.java Wed Jul 12 14:16:15 2006
@@ -69,7 +69,7 @@
         notify();
     }
 
-    public void handleResult(XmlRpcRequest pRequest, Object pResult) {
+    public synchronized void handleResult(XmlRpcRequest pRequest, Object pResult) {
         responseSeen = true;
         result = pResult;
         notify();

Modified: webservices/xmlrpc/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/pom.xml?rev=421415&r1=421414&r2=421415&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/pom.xml (original)
+++ webservices/xmlrpc/trunk/pom.xml Wed Jul 12 14:16:15 2006
@@ -116,6 +116,10 @@
     </developers>
     <contributors>
         <contributor>
+            <name>Alan Burlison</name>
+            <email>Alan.Burlison@sun.com</email>
+        </contributor>
+        <contributor>
             <name>Denis Carniel</name>
             <email>2nis@aktiv-design.com</email>
         </contributor>

Modified: webservices/xmlrpc/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/src/changes/changes.xml?rev=421415&r1=421414&r2=421415&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/src/changes/changes.xml (original)
+++ webservices/xmlrpc/trunk/src/changes/changes.xml Wed Jul 12 14:16:15 2006
@@ -3,6 +3,12 @@
     <title>Changes in Apache XML-RPC</title>
   </properties>
   <body>
+    <release version="3.0rc1" date="Not yet released">
+      <action dev="jochen" type="fix" due-to="Alan Burlison"
+          due-to-email="Alan.Burlison@sun.com">
+        Added a missing "synchronized" to the TimingOutCallback.
+      </action>
+    </release>
     <release version="3.0b1" date="24-Jun-2006">
       <action dev="hgomez" type="add">
         add connectionTimeout and replyTimeout in RPC clients.



---------------------------------------------------------------------
To unsubscribe, e-mail: xmlrpc-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: xmlrpc-dev-help@ws.apache.org