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

Jean-Noël Rouvignac
31.58.2015 0f06b17545d4c89b56071cf084363992d975af43
opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrHistoricalMultiple.java
@@ -276,6 +276,7 @@
         * -> this generates the list of values that needs to be added
         * concatenate the 2 generated lists into a replace
         */
        boolean conflict = false;
        Attribute addedValues = m.getAttribute();
        m.setAttribute(new AttributeBuilder(addedValues, true).toAttribute());
@@ -286,12 +287,13 @@
        if (!processAddConflict(csn, m))
        {
          modsIterator.remove();
          conflict = true;
        }
        AttributeBuilder builder = new AttributeBuilder(keptValues);
        builder.addAll(m.getAttribute());
        m.setAttribute(builder.toAttribute());
        return false;
        return conflict;
      case INCREMENT:
        // TODO : FILL ME