You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by du...@apache.org on 2006/01/22 19:57:58 UTC

svn commit: r371349 - /webservices/axis/trunk/java/src/org/apache/axis/client/Call.java

Author: dug
Date: Sun Jan 22 10:57:56 2006
New Revision: 371349

URL: http://svn.apache.org/viewcvs?rev=371349&view=rev
Log:
typo

Modified:
    webservices/axis/trunk/java/src/org/apache/axis/client/Call.java

Modified: webservices/axis/trunk/java/src/org/apache/axis/client/Call.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/src/org/apache/axis/client/Call.java?rev=371349&r1=371348&r2=371349&view=diff
==============================================================================
--- webservices/axis/trunk/java/src/org/apache/axis/client/Call.java (original)
+++ webservices/axis/trunk/java/src/org/apache/axis/client/Call.java Sun Jan 22 10:57:56 2006
@@ -2828,7 +2828,7 @@
                 //unless we don't care about the return value or we want
                 //a raw message back
                 //get the fault from the body and throw it
-                if ( msgContext.isPropertyTrue(Call.DONT_THROW_FAULT,false) )
+                if ( !msgContext.isPropertyTrue(Call.DONT_THROW_FAULT,false) )
                   throw ((SOAPFault)respBody).getFault();
             }
         }