You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2010/03/12 18:33:02 UTC

svn commit: r922361 - /cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java

Author: dkulp
Date: Fri Mar 12 17:33:02 2010
New Revision: 922361

URL: http://svn.apache.org/viewvc?rev=922361&view=rev
Log:
[CXF-2711] Make field volatile
Patch from Guillaume Sauthier  applied

Modified:
    cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java

Modified: cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java
URL: http://svn.apache.org/viewvc/cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java?rev=922361&r1=922360&r2=922361&view=diff
==============================================================================
--- cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java (original)
+++ cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java Fri Mar 12 17:33:02 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;