updated to compile with changes to MemoryTransactionStore constructor

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@686677 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2008-08-18 06:08:50 +00:00
parent 479f5e1713
commit 313530a396
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public class JPAPersistenceAdapter implements PersistenceAdapter {
public TransactionStore createTransactionStore() throws IOException {
if (transactionStore == null) {
transactionStore = new MemoryTransactionStore();
transactionStore = new MemoryTransactionStore(this);
}
return this.transactionStore;
}