From f05415834a643dd0c065a1865808ae4df45d5952 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 22 Sep 2015 11:50:17 +0000
Subject: [PATCH] Replaced AttrHistoricalWithOptions by a new class AttributeDescription

---
 opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrValueHistorical.java |   13 +------------
 1 files changed, 1 insertions(+), 12 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrValueHistorical.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrValueHistorical.java
index 3e54e32..71d6e68 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrValueHistorical.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrValueHistorical.java
@@ -29,7 +29,7 @@
 import org.forgerock.opendj.ldap.ByteString;
 import org.opends.server.replication.common.CSN;
 
-/** Store historical information for an attribute value. */
+/** AttrValueHistorical is the historical information of the modification of one attribute value. */
 public class AttrValueHistorical
 {
   private ByteString value;
@@ -50,12 +50,6 @@
     this.valueDeleteTime = csnDelete;
   }
 
-  /**
-   * Compares this object with another ValueInfo object.
-   * Object are said equals when their values matches.
-   * @param obj object to be compared with this object
-   * @return true if equal, false otherwise
-   */
   @Override
   public boolean equals(Object obj)
   {
@@ -67,11 +61,6 @@
     return false;
   }
 
-  /**
-   * Calculates the hasCode for this object.
-   * Only value is used when calculating the hashCode
-   * @return the hashcode
-   */
   @Override
   public int hashCode()
   {

--
Gitblit v1.10.0