mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
12.27.2006 ed699902a89c7be9c46f3c9bb24c33fdee507879
opends/src/server/org/opends/server/util/ChangeRecordEntry.java
@@ -30,6 +30,7 @@
import static org.opends.server.loggers.Debug.debugConstructor;
import static org.opends.server.loggers.Debug.debugEnter;
import static org.opends.server.util.Validator.*;
import org.opends.server.types.DN;
@@ -56,20 +57,15 @@
  /**
   * Creates a new change record entry with the provided information.
   *
   * @param  dn  The distinguished name for this change record entry.
   * @param  dn  The distinguished name for this change record entry.  It must
   *             not be <CODE>null</CODE>.
   */
  protected ChangeRecordEntry(DN dn)
  {
    assert debugConstructor(CLASS_NAME, String.valueOf(dn));
    if (dn == null)
    {
      this.dn = new DN();
    }
    else
    {
      this.dn = dn;
    }
    ensureNotNull(dn);
    this.dn = dn;
  }