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

Jean-Noel Rouvignac
09.01.2015 5cd7bdbbda0fa9f1aa6e12d9171c3811b73feb07
opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/ModifyConflictTest.java
@@ -1252,9 +1252,7 @@
    UUID uuid = UUID.randomUUID();
    // Create the att values list
    ArrayList<Attribute> uuidList = new ArrayList<>(1);
    Attribute uuidAttr = Attributes.create(entryuuidAttrType, uuid.toString());
    uuidList.add(uuidAttr);
    List<Attribute> uuidList = Attributes.createAsList(entryuuidAttrType, uuid.toString());
    // Add the uuid in the entry
    Map<AttributeType, List<Attribute>> operationalAttributes = entry.getOperationalAttributes();