Thanks David - this is now fixed
cheers,
Rob
Rob Davies
http://rajdavies.blogspot.com/
On 18 Aug 2008, at 05:28, David Sitsky wrote:
I've attached a patch which gets the system compiling again. I'm
not sure if this is the right fix however.
David Sitsky wrote:
I've done a fresh update this morning and a clean compile, and am
getting the following compilation error. Any chance of somebody
fixing this? Thanks.
[INFO] Compiling 9 source files to C:\work\activemq.trunk\activemq
\activemq-jpa-
store\target\classes
[INFO]
------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] Compilation failure
C:\work\activemq.trunk\activemq\activemq-jpa-store\src\main\java\org
\apache\acti vemq\store\jpa\JPAPersistenceAdapter.java:[133,31]
cannot find symbol
symbol : constructor MemoryTransactionStore()
location: class
org.apache.activemq.store.memory.MemoryTransactionStore
--
Cheers,
David
Nuix Pty Ltd
Suite 79, 89 Jones St, Ultimo NSW 2007, Australia Ph: +61 2 9280
0699
Web: http://www.nuix.com Fax: +61 2 9212
6902
Index: activemq-jpa-store/src/main/java/org/apache/activemq/store/
jpa/JPAPersistenceAdapter.java
===================================================================
--- activemq-jpa-store/src/main/java/org/apache/activemq/store/jpa/
JPAPersistenceAdapter.java (revision 686667)
+++ activemq-jpa-store/src/main/java/org/apache/activemq/store/jpa/
JPAPersistenceAdapter.java (working copy)
@@ -130,7 +130,7 @@
public TransactionStore createTransactionStore() throws
IOException {
if (transactionStore == null) {
- transactionStore = new MemoryTransactionStore();
+ transactionStore = new MemoryTransactionStore(this);
}
return this.transactionStore;
}