From 063b1432ef622fc6b25a1bb7436685827d3d4c48 Mon Sep 17 00:00:00 2001
From: lutoff <lutoff@localhost>
Date: Wed, 06 Sep 2006 06:45:33 +0000
Subject: [PATCH] Minor modification:    - code cleaning   - code improvement

---
 opends/src/server/org/opends/server/synchronization/AttrInfo.java |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/opends/src/server/org/opends/server/synchronization/AttrInfo.java b/opends/src/server/org/opends/server/synchronization/AttrInfo.java
index 74b2e4e..52f4ead 100644
--- a/opends/src/server/org/opends/server/synchronization/AttrInfo.java
+++ b/opends/src/server/org/opends/server/synchronization/AttrInfo.java
@@ -28,7 +28,6 @@
 
 import java.util.ArrayList;
 import java.util.LinkedHashSet;
-import java.util.Set;
 import org.opends.server.types.AttributeValue;
 
 
@@ -68,6 +67,8 @@
     */
    public AttrInfo()
    {
+     this.deleteTime = null;
+     this.lastUpdateTime = null;
      this.valuesInfo = new ArrayList<ValueInfo>();
    }
 
@@ -148,11 +149,9 @@
     * Change historical information after a delete of a set of values.
     *
     * @param values values that were deleted
-    * @param options options for the values
-    * @param CN time when the delete was done
+   * @param CN time when the delete was done
     */
-   void delete(LinkedHashSet<AttributeValue> values, Set<String> options,
-               ChangeNumber CN)
+   void delete(LinkedHashSet<AttributeValue> values, ChangeNumber CN)
    {
      for (AttributeValue val : values)
      {

--
Gitblit v1.10.0