opends/src/server/org/opends/server/replication/plugin/AttrHistoricalMultiple.java
@@ -40,7 +40,6 @@ import org.opends.server.types.Modification; import org.opends.server.types.ModificationType; /** * This classes is used to store historical information for multiple valued * attributes. @@ -52,9 +51,9 @@ */ public class AttrHistoricalMultiple extends AttrHistorical { /** Last time when the attribute was deleted */ /** Last time when the attribute was deleted. */ private ChangeNumber deleteTime; /** Last time the attribute was modified */ /** Last time the attribute was modified. */ private ChangeNumber lastUpdateTime; private final Map<AttrValueHistorical, AttrValueHistorical> valuesHist; opends/src/server/org/opends/server/replication/plugin/AttrHistoricalSingle.java
@@ -49,11 +49,11 @@ */ public class AttrHistoricalSingle extends AttrHistorical { /** Last time when the attribute was deleted */ /** Last time when the attribute was deleted. */ private ChangeNumber deleteTime = null; /** Last time when a value was added */ /** Last time when a value was added. */ private ChangeNumber addTime = null; /** Last added value */ /** Last added value. */ private AttributeValue value = null; /**