Author: chirino
Date: Mon Jun 29 14:04:42 2009
New Revision: 789333

URL: http://svn.apache.org/viewvc?rev=789333&view=rev
Log:
fixing typo

Modified:
    
activemq/sandbox/activemq-flow/activemq-broker/src/main/java/org/apache/activemq/apollo/broker/TransactionManager.java

Modified: 
activemq/sandbox/activemq-flow/activemq-broker/src/main/java/org/apache/activemq/apollo/broker/TransactionManager.java
URL: 
http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/activemq-broker/src/main/java/org/apache/activemq/apollo/broker/TransactionManager.java?rev=789333&r1=789332&r2=789333&view=diff
==============================================================================
--- 
activemq/sandbox/activemq-flow/activemq-broker/src/main/java/org/apache/activemq/apollo/broker/TransactionManager.java
 (original)
+++ 
activemq/sandbox/activemq-flow/activemq-broker/src/main/java/org/apache/activemq/apollo/broker/TransactionManager.java
 Mon Jun 29 14:04:42 2009
@@ -159,7 +159,7 @@
         Transaction ret;
 
         long tid = tidGen.incrementAndGet();
-        IQueue<Long, TxOp> opQueue = createTranscationQueue(tid);
+        IQueue<Long, TxOp> opQueue = createTransactionQueue(tid);
 
         if (xid == null) {
             ret = new LocalTransaction(this, tid, opQueue);
@@ -267,7 +267,7 @@
         return queue;
     }
 
-    private final IQueue<Long, TxOp> createTranscationQueue(long tid) {
+    private final IQueue<Long, TxOp> createTransactionQueue(long tid) {
         return createTxQueueInternal(TX_QUEUE_PREFIX + tid, 
BrokerQueueStore.TRANSACTION_QUEUE_TYPE);
     }
 


Reply via email to