Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 76798 invoked from network); 16 Oct 2009 20:59:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Oct 2009 20:59:10 -0000 Received: (qmail 95904 invoked by uid 500); 16 Oct 2009 20:59:10 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 95831 invoked by uid 500); 16 Oct 2009 20:59:09 -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 95821 invoked by uid 99); 16 Oct 2009 20:59:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Oct 2009 20:59:08 +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; Fri, 16 Oct 2009 20:59:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B0A2B23888E7; Fri, 16 Oct 2009 20:58:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r826085 - /cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientFactoryBean.java Date: Fri, 16 Oct 2009 20:58:45 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091016205845.B0A2B23888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Fri Oct 16 20:58:45 2009 New Revision: 826085 URL: http://svn.apache.org/viewvc?rev=826085&view=rev Log: Fix pmd issue Modified: cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientFactoryBean.java Modified: cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientFactoryBean.java URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientFactoryBean.java?rev=826085&r1=826084&r2=826085&view=diff ============================================================================== --- cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientFactoryBean.java (original) +++ cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientFactoryBean.java Fri Oct 16 20:58:45 2009 @@ -62,8 +62,7 @@ } protected Client createClient(Endpoint ep) { - Client client = new ClientImpl(getBus(), ep, getConduitSelector()); - return client; + return new ClientImpl(getBus(), ep, getConduitSelector()); } protected void applyFeatures(Client client) {