Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E730D68E1 for ; Mon, 30 May 2011 15:47:41 +0000 (UTC) Received: (qmail 34888 invoked by uid 500); 30 May 2011 15:47:41 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 34858 invoked by uid 500); 30 May 2011 15:47:41 -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 34851 invoked by uid 99); 30 May 2011 15:47:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 May 2011 15:47:41 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Mon, 30 May 2011 15:47:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E25B623888EA; Mon, 30 May 2011 15:47:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1129227 - /activemq/trunk/activemq-ra/src/main/java/org/apache/activemq/ra/ManagedTransactionContext.java Date: Mon, 30 May 2011 15:47:20 -0000 To: commits@activemq.apache.org From: dejanb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110530154720.E25B623888EA@eris.apache.org> Author: dejanb Date: Mon May 30 15:47:20 2011 New Revision: 1129227 URL: http://svn.apache.org/viewvc?rev=1129227&view=rev Log: fix typo Modified: activemq/trunk/activemq-ra/src/main/java/org/apache/activemq/ra/ManagedTransactionContext.java Modified: activemq/trunk/activemq-ra/src/main/java/org/apache/activemq/ra/ManagedTransactionContext.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-ra/src/main/java/org/apache/activemq/ra/ManagedTransactionContext.java?rev=1129227&r1=1129226&r2=1129227&view=diff ============================================================================== --- activemq/trunk/activemq-ra/src/main/java/org/apache/activemq/ra/ManagedTransactionContext.java (original) +++ activemq/trunk/activemq-ra/src/main/java/org/apache/activemq/ra/ManagedTransactionContext.java Mon May 30 15:47:20 2011 @@ -44,7 +44,7 @@ public class ManagedTransactionContext e public void setUseSharedTxContext(boolean enable) throws JMSException { if (isInLocalTransaction() || isInXATransaction()) { - throw new JMSException("The resource is allready being used in transaction context."); + throw new JMSException("The resource is already being used in transaction context."); } useSharedTxContext = enable; }