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

Jean-Noel Rouvignac
08.48.2015 a89f7014aeb71dba5c94404dfea7eb89e7eeee74
opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/ModifyRequestProtocolOp.java
@@ -66,7 +66,7 @@
  public ModifyRequestProtocolOp(ByteString dn)
  {
    this.dn            = dn;
    this.modifications = new ArrayList<RawModification>();
    this.modifications = new ArrayList<>();
  }
@@ -85,7 +85,7 @@
    if (modifications == null)
    {
      this.modifications = new ArrayList<RawModification>();
      this.modifications = new ArrayList<>();
    }
    else
    {