Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 2333 invoked from network); 30 Sep 2010 21:39:47 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 30 Sep 2010 21:39:47 -0000 Received: (qmail 55160 invoked by uid 500); 30 Sep 2010 21:39:47 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 55119 invoked by uid 500); 30 Sep 2010 21:39:47 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 55112 invoked by uid 99); 30 Sep 2010 21:39:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Sep 2010 21:39:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Sep 2010 21:39:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 481BE2388A36; Thu, 30 Sep 2010 21:39:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1003300 - /cxf/branches/2.2.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java Date: Thu, 30 Sep 2010 21:39:26 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100930213926.481BE2388A36@eris.apache.org> Author: dkulp Date: Thu Sep 30 21:39:25 2010 New Revision: 1003300 URL: http://svn.apache.org/viewvc?rev=1003300&view=rev Log: fix compile failure Modified: cxf/branches/2.2.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java Modified: cxf/branches/2.2.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java?rev=1003300&r1=1003299&r2=1003300&view=diff ============================================================================== --- cxf/branches/2.2.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java (original) +++ cxf/branches/2.2.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java Thu Sep 30 21:39:25 2010 @@ -533,7 +533,7 @@ public abstract class AbstractHTTPDestin } } response.setStatus(status); - } else if (oneWay && !MessageUtils.isPartialResponse(outMessage)) { + } else if (oneWay && !isPartialResponse(outMessage)) { response.setStatus(HttpURLConnection.HTTP_ACCEPTED); } else { response.setStatus(HttpURLConnection.HTTP_OK);