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

gbellato
29.54.2007 6727fbc1a159686d355716af0f6d6815bf4054f0
opendj-sdk/opends/src/server/org/opends/server/replication/plugin/Historical.java
@@ -129,10 +129,12 @@
   *
   * @param modifyOperation the operation to be processed
   * @param modifiedEntry the entry that is being modified (before modification)
   * @return true if the replayed operation was in conflict
   */
  public void replayOperation(ModifyOperation modifyOperation,
  public boolean replayOperation(ModifyOperation modifyOperation,
                              Entry modifiedEntry)
  {
    boolean bConflict = false;
    List<Modification> mods = modifyOperation.getModifications();
    ChangeNumber changeNumber =
      OperationContext.getChangeNumber(modifyOperation);
@@ -212,6 +214,7 @@
            // TODO : FILL ME
            break;
        }
        bConflict = true;
      }
      else
      {
@@ -226,6 +229,7 @@
    {
      moreRecentChangenumber = changeNumber;
    }
    return bConflict;
  }
  /**