From 9603e9270e1350abd3248e6187d4d4bb0a8fee1d Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 30 Aug 2013 10:07:10 +0000
Subject: [PATCH] OPENDJ-1116 Introduce abstraction for the changelog DB

---
 opends/src/server/org/opends/server/replication/server/changelog/api/ReplicationDBCursor.java |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/server/changelog/api/ReplicationDBCursor.java b/opends/src/server/org/opends/server/replication/server/changelog/api/ReplicationDBCursor.java
index 74e69d4..2e126da 100644
--- a/opends/src/server/org/opends/server/replication/server/changelog/api/ReplicationDBCursor.java
+++ b/opends/src/server/org/opends/server/replication/server/changelog/api/ReplicationDBCursor.java
@@ -38,24 +38,24 @@
 {
 
   /**
-	 * Get the UpdateMsg where the cursor is currently set.
-	 * 
-	 * @return The UpdateMsg where the cursor is currently set.
-	 */
+   * Get the UpdateMsg where the cursor is currently set.
+   *
+   * @return The UpdateMsg where the cursor is currently set.
+   */
   UpdateMsg getChange();
 
   /**
-	 * Go to the next change in the ReplicationDB or in the server Queue.
-	 * 
-	 * @return false if the cursor is already on the last change before this call.
-	 */
+   * Go to the next change in the ReplicationDB or in the server Queue.
+   *
+   * @return false if the cursor is already on the last change before this call.
+   */
   boolean next();
 
   /**
-	 * Release the resources and locks used by this cursor. This method must be
-	 * called when the cursor is no longer used. Failure to do it could cause DB
-	 * deadlock.
-	 */
+   * Release the resources and locks used by this cursor. This method must be
+   * called when the cursor is no longer used. Failure to do it could cause DB
+   * deadlock.
+   */
   @Override
   void close();
 

--
Gitblit v1.10.0