Author: dkulp
Date: Fri Mar 12 17:42:08 2010
New Revision: 922365

URL: http://svn.apache.org/viewvc?rev=922365&view=rev
Log:
Merged revisions 922361 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r922361 | dkulp | 2010-03-12 12:33:02 -0500 (Fri, 12 Mar 2010) | 2 lines
  
  [CXF-2711] Make field volatile
  Patch from Guillaume Sauthier  applied
........

Modified:
    cxf/branches/2.2.x-fixes/   (props changed)
    
cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: 
cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java
URL: 
http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java?rev=922365&r1=922364&r2=922365&view=diff
==============================================================================
--- 
cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java
 (original)
+++ 
cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java
 Fri Mar 12 17:42:08 2010
@@ -35,7 +35,7 @@ public class ClientCallback implements F
     protected Map<String, Object> context;
     protected Object[] result;
     protected Throwable exception;
-    protected boolean done;
+    protected volatile boolean done;
     protected boolean cancelled;
     protected boolean started;
     


Reply via email to