You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2009/01/12 14:55:38 UTC

svn commit: r733755 - in /activemq/camel/branches/camel-1.x: ./ components/camel-cxf/src/main/java/org/apache/camel/component/cxf/invoker/CxfClient.java

Author: ningjiang
Date: Mon Jan 12 05:55:35 2009
New Revision: 733755

URL: http://svn.apache.org/viewvc?rev=733755&view=rev
Log:
Merged revisions 733749 via svnmerge from 
https://svn.apache.org/repos/asf/activemq/camel/trunk

........
  r733749 | ningjiang | 2009-01-12 21:40:58 +0800 (Mon, 12 Jan 2009) | 1 line
  
  Fixed the build error with latest CXF 2.1.x snapshot
........

Modified:
    activemq/camel/branches/camel-1.x/   (props changed)
    activemq/camel/branches/camel-1.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/invoker/CxfClient.java

Propchange: activemq/camel/branches/camel-1.x/
------------------------------------------------------------------------------
    svn:mergeinfo = /activemq/camel/trunk:733749

Propchange: activemq/camel/branches/camel-1.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: activemq/camel/branches/camel-1.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/invoker/CxfClient.java
URL: http://svn.apache.org/viewvc/activemq/camel/branches/camel-1.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/invoker/CxfClient.java?rev=733755&r1=733754&r2=733755&view=diff
==============================================================================
--- activemq/camel/branches/camel-1.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/invoker/CxfClient.java (original)
+++ activemq/camel/branches/camel-1.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/invoker/CxfClient.java Mon Jan 12 05:55:35 2009
@@ -164,7 +164,7 @@
         return retval;
     }
 
-    private void waitResponse(Exchange exchange) {
+    protected void waitResponse(Exchange exchange) {
         int remaining = synchronousTimeout;
         while (!Boolean.TRUE.equals(exchange.get(FINISHED)) && remaining > 0) {
             long start = System.currentTimeMillis();