Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 36326 invoked from network); 19 Jun 2008 16:52:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Jun 2008 16:52:10 -0000 Received: (qmail 66881 invoked by uid 500); 19 Jun 2008 16:52:12 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 66862 invoked by uid 500); 19 Jun 2008 16:52:11 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 66853 invoked by uid 99); 19 Jun 2008 16:52:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jun 2008 09:52:11 -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; Thu, 19 Jun 2008 16:51:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2B38E2388A16; Thu, 19 Jun 2008 09:51:41 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r669558 - /activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java Date: Thu, 19 Jun 2008 16:51:41 -0000 To: commits@activemq.apache.org From: rajdavies@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080619165141.2B38E2388A16@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rajdavies Date: Thu Jun 19 09:51:40 2008 New Revision: 669558 URL: http://svn.apache.org/viewvc?rev=669558&view=rev Log: Fix for https://issues.apache.org/activemq/browse/AMQ-1804 Modified: activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java Modified: activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java?rev=669558&r1=669557&r2=669558&view=diff ============================================================================== --- activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java (original) +++ activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java Thu Jun 19 09:51:40 2008 @@ -21,12 +21,9 @@ import java.util.LinkedList; import java.util.Map; import java.util.concurrent.atomic.AtomicBoolean; - import javax.jms.Connection; import javax.jms.ConnectionFactory; import javax.jms.JMSException; -import javax.transaction.TransactionManager; - import org.apache.activemq.ActiveMQConnection; import org.apache.activemq.ActiveMQConnectionFactory; import org.apache.activemq.Service; @@ -46,6 +43,8 @@ * library like Jencks such as in this example * + * @org.apache.xbean.XBean element="pooledConnectionFactory" + * * @version $Revision: 1.1 $ */ public class PooledConnectionFactory implements ConnectionFactory, Service {