Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 99608 invoked from network); 5 Aug 2008 21:55:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Aug 2008 21:55:59 -0000 Received: (qmail 56697 invoked by uid 500); 5 Aug 2008 21:55:58 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 56639 invoked by uid 500); 5 Aug 2008 21:55:58 -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 56629 invoked by uid 99); 5 Aug 2008 21:55:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Aug 2008 14:55:58 -0700 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; Tue, 05 Aug 2008 21:55:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6DA522388A04; Tue, 5 Aug 2008 14:55:08 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r682981 - /cxf/branches/2.0.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSDestination.java Date: Tue, 05 Aug 2008 21:55:08 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080805215508.6DA522388A04@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Tue Aug 5 14:55:08 2008 New Revision: 682981 URL: http://svn.apache.org/viewvc?rev=682981&view=rev Log: Fix checkstyle error Modified: cxf/branches/2.0.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSDestination.java Modified: cxf/branches/2.0.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSDestination.java URL: http://svn.apache.org/viewvc/cxf/branches/2.0.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSDestination.java?rev=682981&r1=682980&r2=682981&view=diff ============================================================================== --- cxf/branches/2.0.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSDestination.java (original) +++ cxf/branches/2.0.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSDestination.java Tue Aug 5 14:55:08 2008 @@ -116,7 +116,7 @@ listenerSession = base.sessionFactory.get(base.targetDestination); listenerThread = new JMSListenerThread(listenerSession, endpointInfo.getName()); - listenerThread.start(); + listenerThread.start(); } catch (JMSException ex) { getLogger().log(Level.SEVERE, "JMS connect failed with JMSException : ", ex); } catch (NamingException nex) {