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

gbellato
08.03.2008 d04fb0f282e0fd9a4bc80d3f9d5ee15506a3b83b
opends/src/server/org/opends/server/replication/protocol/InitializeRequestMsg.java
@@ -49,10 +49,10 @@
   * @param destination destination of this message
   * @param senderID serverID of the server that will send this message
   */
  public InitializeRequestMsg(DN baseDn, short senderID, short destination)
  public InitializeRequestMsg(String baseDn, short senderID, short destination)
  {
    super(senderID, destination);
    this.baseDn = baseDn.toNormalizedString();
    this.baseDn = baseDn;
  }
  /**