You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2010/07/07 06:13:16 UTC

svn commit: r961167 - /activemq/sandbox/activemq-apollo-actor/activemq-hawtdb/src/main/scala/org/apache/activemq/broker/store/hawtdb/HawtDBClient.scala

Author: chirino
Date: Wed Jul  7 04:13:16 2010
New Revision: 961167

URL: http://svn.apache.org/viewvc?rev=961167&view=rev
Log:
Fix compile error

Modified:
    activemq/sandbox/activemq-apollo-actor/activemq-hawtdb/src/main/scala/org/apache/activemq/broker/store/hawtdb/HawtDBClient.scala

Modified: activemq/sandbox/activemq-apollo-actor/activemq-hawtdb/src/main/scala/org/apache/activemq/broker/store/hawtdb/HawtDBClient.scala
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-apollo-actor/activemq-hawtdb/src/main/scala/org/apache/activemq/broker/store/hawtdb/HawtDBClient.scala?rev=961167&r1=961166&r2=961167&view=diff
==============================================================================
--- activemq/sandbox/activemq-apollo-actor/activemq-hawtdb/src/main/scala/org/apache/activemq/broker/store/hawtdb/HawtDBClient.scala (original)
+++ activemq/sandbox/activemq-apollo-actor/activemq-hawtdb/src/main/scala/org/apache/activemq/broker/store/hawtdb/HawtDBClient.scala Wed Jul  7 04:13:16 2010
@@ -153,7 +153,7 @@ class HawtDBClient(hawtDBStore: HawtDBSt
       journal.setMaxWriteBatchSize(config.journalBatchSize);
       journal.setChecksum(true);
       journal.setListener( new JournalListener{
-        def synced(writes: Array[Write]) = {
+        def synced(writes: Array[JournalListener.Write]) = {
           var onCompletes = List[Runnable]()
           withTx { tx=>
             val helper = new TxHelper(tx)