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

Jean-Noel Rouvignac
08.48.2015 a89f7014aeb71dba5c94404dfea7eb89e7eeee74
opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/ModifyCommonMsg.java
@@ -170,7 +170,7 @@
  protected List<Modification> decodeMods(byte[] in) throws IOException,
      LDAPException
  {
    List<Modification> mods = new ArrayList<Modification>();
    List<Modification> mods = new ArrayList<>();
    ASN1Reader reader = ASN1.getReader(in);
    while (reader.hasNextElement())
    {
@@ -189,7 +189,7 @@
  protected List<RawModification> decodeRawMods(byte[] in)
      throws LDAPException, IOException
  {
    List<RawModification> ldapmods = new ArrayList<RawModification>();
    List<RawModification> ldapmods = new ArrayList<>();
    ASN1Reader asn1Reader = ASN1.getReader(in);
    while(asn1Reader.hasNextElement())
    {
@@ -197,5 +197,4 @@
    }
    return ldapmods;
  }
}