Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 96462 invoked from network); 8 Oct 2007 19:47:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Oct 2007 19:47:13 -0000 Received: (qmail 39097 invoked by uid 500); 8 Oct 2007 19:47:01 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 38920 invoked by uid 500); 8 Oct 2007 19:47:00 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 38900 invoked by uid 99); 8 Oct 2007 19:47:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Oct 2007 12:47:00 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Oct 2007 19:47:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A5CBE1A9832; Mon, 8 Oct 2007 12:46:13 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r582947 - /incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/outbound/src/demo/servlet/HelloWorldServlet.java Date: Mon, 08 Oct 2007 19:46:13 -0000 To: cxf-commits@incubator.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071008194613.A5CBE1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Mon Oct 8 12:46:12 2007 New Revision: 582947 URL: http://svn.apache.org/viewvc?rev=582947&view=rev Log: Fix checkstyle error Modified: incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/outbound/src/demo/servlet/HelloWorldServlet.java Modified: incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/outbound/src/demo/servlet/HelloWorldServlet.java URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/outbound/src/demo/servlet/HelloWorldServlet.java?rev=582947&r1=582946&r2=582947&view=diff ============================================================================== --- incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/outbound/src/demo/servlet/HelloWorldServlet.java (original) +++ incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/outbound/src/demo/servlet/HelloWorldServlet.java Mon Oct 8 12:46:12 2007 @@ -81,7 +81,10 @@ // create the connection // - CXFConnectionRequestInfo requestInfo = new CXFConnectionRequestInfo(Greeter.class, wsdlLocation, serviceName, portName); + CXFConnectionRequestInfo requestInfo = new CXFConnectionRequestInfo(Greeter.class, + wsdlLocation, + serviceName, + portName); return (Connection)factory.getConnection(requestInfo); }