From 984ba7b145520f02414eedf36b88946172ef4dd3 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Mon, 07 Oct 2013 12:53:45 +0000
Subject: [PATCH] OPENDJ-1116 Introduce abstraction for the changelog DB

---
 opends/src/server/org/opends/server/replication/service/ReplicationBroker.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/service/ReplicationBroker.java b/opends/src/server/org/opends/server/replication/service/ReplicationBroker.java
index 8062c2e..d486e8d 100644
--- a/opends/src/server/org/opends/server/replication/service/ReplicationBroker.java
+++ b/opends/src/server/org/opends/server/replication/service/ReplicationBroker.java
@@ -1647,7 +1647,7 @@
       }
 
       // Has this replication server the latest local change ?
-      if (myCSN.olderOrEqual(rsCSN))
+      if (myCSN.isOlderThanOrEqualTo(rsCSN))
       {
         if (myCSN.equals(rsCSN))
         {
@@ -1663,7 +1663,7 @@
             // Initialize the latest CSN
             latestRsCSN = rsCSN;
           }
-          if (rsCSN.newerOrEquals(latestRsCSN))
+          if (rsCSN.isNewerThanOrEqualTo(latestRsCSN))
           {
             if (rsCSN.equals(latestRsCSN))
             {

--
Gitblit v1.10.0