Author: rajdavies
Date: Sun Aug 17 23:08:50 2008
New Revision: 686677

URL: http://svn.apache.org/viewvc?rev=686677&view=rev
Log:
updated to compile with changes to MemoryTransactionStore constructor

Modified:
    
activemq/trunk/activemq-jpa-store/src/main/java/org/apache/activemq/store/jpa/JPAPersistenceAdapter.java

Modified: 
activemq/trunk/activemq-jpa-store/src/main/java/org/apache/activemq/store/jpa/JPAPersistenceAdapter.java
URL: 
http://svn.apache.org/viewvc/activemq/trunk/activemq-jpa-store/src/main/java/org/apache/activemq/store/jpa/JPAPersistenceAdapter.java?rev=686677&r1=686676&r2=686677&view=diff
==============================================================================
--- 
activemq/trunk/activemq-jpa-store/src/main/java/org/apache/activemq/store/jpa/JPAPersistenceAdapter.java
 (original)
+++ 
activemq/trunk/activemq-jpa-store/src/main/java/org/apache/activemq/store/jpa/JPAPersistenceAdapter.java
 Sun Aug 17 23:08:50 2008
@@ -130,7 +130,7 @@
 
     public TransactionStore createTransactionStore() throws IOException {
         if (transactionStore == null) {
-            transactionStore = new MemoryTransactionStore();
+            transactionStore = new MemoryTransactionStore(this);
         }
         return this.transactionStore;
     }


Reply via email to