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

Matthew Swift
21.49.2012 2d13862af451882e06a892347cab630304a9455c
opendj-sdk/opends/src/server/org/opends/server/replication/protocol/DeleteContext.java
@@ -23,6 +23,7 @@
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Portions copyright 2012 ForgeRock AS.
 */
package org.opends.server.replication.protocol;
@@ -37,10 +38,10 @@
   * Creates a new DeleteContext with the provided information.
   *
   * @param changeNumber The change number of the Delete Operation.
   * @param uid The unique Id of the deleted entry.
   * @param entryUUID The unique Id of the deleted entry.
   */
  public DeleteContext(ChangeNumber changeNumber, String uid)
  public DeleteContext(ChangeNumber changeNumber, String entryUUID)
  {
    super(changeNumber, uid);
    super(changeNumber, entryUUID);
  }
}