From 99aaa917a95d7ec19e14dad25f61f58ff84753b1 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 10:49:57 +0000
Subject: [PATCH] Autorefactored javadocs

---
 opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/api/DBCursor.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/api/DBCursor.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/api/DBCursor.java
index 585a82f..443512b 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/api/DBCursor.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/api/DBCursor.java
@@ -21,7 +21,7 @@
  * CDDL HEADER END
  *
  *
- *      Copyright 2013-2014 ForgeRock AS
+ *      Copyright 2013-2015 ForgeRock AS
  */
 package org.opends.server.replication.server.changelog.api;
 
@@ -96,11 +96,11 @@
    * the exact key must be found or if any key equal or lower/higher should match.
    */
   public enum KeyMatchingStrategy {
-    /** matches if the key or a lower key is found. */
+    /** Matches if the key or a lower key is found. */
     LESS_THAN_OR_EQUAL_TO_KEY,
-    /** matches only if the exact key is found. */
+    /** Matches only if the exact key is found. */
     EQUAL_TO_KEY,
-    /** matches if the key or a greater key is found. */
+    /** Matches if the key or a greater key is found. */
     GREATER_THAN_OR_EQUAL_TO_KEY
   }
 
@@ -110,9 +110,9 @@
    * key.
    */
   public enum PositionStrategy {
-    /** start point is on the matching key. */
+    /** Start point is on the matching key. */
     ON_MATCHING_KEY,
-    /** start point is after the matching key. */
+    /** Start point is after the matching key. */
     AFTER_MATCHING_KEY
   }
 

--
Gitblit v1.10.0