[hornetq-commits] JBoss hornetq SVN: r10725 - branches/HORNETQ-698_SplitJournal/hornetq-journal/src/main/java/org/hornetq/core/journal.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed May 25 13:24:27 EDT 2011


Author: borges
Date: 2011-05-25 13:24:27 -0400 (Wed, 25 May 2011)
New Revision: 10725

Modified:
   branches/HORNETQ-698_SplitJournal/hornetq-journal/src/main/java/org/hornetq/core/journal/Journal.java
Log:
remove trailing whitespace

Modified: branches/HORNETQ-698_SplitJournal/hornetq-journal/src/main/java/org/hornetq/core/journal/Journal.java
===================================================================
--- branches/HORNETQ-698_SplitJournal/hornetq-journal/src/main/java/org/hornetq/core/journal/Journal.java	2011-05-25 17:24:00 UTC (rev 10724)
+++ branches/HORNETQ-698_SplitJournal/hornetq-journal/src/main/java/org/hornetq/core/journal/Journal.java	2011-05-25 17:24:27 UTC (rev 10725)
@@ -18,11 +18,11 @@
 import org.hornetq.core.server.HornetQComponent;
 
 /**
- * 
+ *
  * Most methods on the journal provide a blocking version where you select the sync mode and a non blocking mode where you pass a completion callback as a parameter.
- * 
+ *
  * Notice also that even on the callback methods it's possible to pass the sync mode. That will only make sense on the NIO operations.
- * 
+ *
  * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
  * @author <a href="mailto:clebert.suconic at jboss.com">Clebert Suconic</a>
  *
@@ -84,13 +84,13 @@
     */
    void appendCommitRecord(long txID, boolean sync, IOCompletion callback, boolean lineUpContext) throws Exception;
 
-   /** 
-    * 
-    * <p>If the system crashed after a prepare was called, it should store information that is required to bring the transaction 
+   /**
+    *
+    * <p>If the system crashed after a prepare was called, it should store information that is required to bring the transaction
     *     back to a state it could be committed. </p>
-    * 
+    *
     * <p> transactionData allows you to store any other supporting user-data related to the transaction</p>
-    * 
+    *
     * @param txID
     * @param transactionData - extra user data for the prepare
     * @throws Exception
@@ -115,7 +115,7 @@
     *  This is only useful if you're using the journal but not interested on the current data.
     *  Useful in situations where the journal is being replicated, copied... etc. */
    JournalLoadInformation loadInternalOnly() throws Exception;
-   
+
    void lineUpContex(IOCompletion callback);
 
    JournalLoadInformation load(List<RecordInfo> committedRecords,
@@ -125,7 +125,7 @@
    int getAlignment() throws Exception;
 
    int getNumberOfRecords();
-   
+
    int getUserVersion();
 
    void perfBlast(int pages) throws Exception;



More information about the hornetq-commits mailing list