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

Jean-Noel Rouvignac
08.48.2015 a89f7014aeb71dba5c94404dfea7eb89e7eeee74
opendj-server-legacy/src/main/java/org/opends/server/tools/dsreplication/ReplicationUserData.java
@@ -22,9 +22,8 @@
 *
 *
 *      Copyright 2008-2009 Sun Microsystems, Inc.
 *      Portions Copyright 2013 ForgeRock AS.
 *      Portions Copyright 2013-2015 ForgeRock AS.
 */
package org.opends.server.tools.dsreplication;
import java.util.LinkedList;
@@ -34,11 +33,10 @@
 * This class is used to store the information provided by the user in the
 * replication command line.  It is required because when we are in interactive
 * mode the ReplicationCliArgumentParser is not enough.
 *
 */
public abstract class ReplicationUserData
{
  private final LinkedList<String> baseDNs = new LinkedList<String>();
  private final LinkedList<String> baseDNs = new LinkedList<>();
  private String adminUid;
  private String adminPwd;
@@ -84,7 +82,7 @@
   */
  public List<String> getBaseDNs()
  {
    return new LinkedList<String>(baseDNs);
    return new LinkedList<>(baseDNs);
  }
  /**