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/tasks/TaskScheduleUserData.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2010 Sun Microsystems, Inc.
 *      Portions Copyright 2014 ForgeRock AS
 *      Portions Copyright 2014-2015 ForgeRock AS
 */
package org.opends.server.tools.tasks;
@@ -51,13 +51,10 @@
  private boolean startNow;
  private Date startDate;
  private String recurringDateTime;
  private final List<String> dependencyIds =
    new ArrayList<String>();
  private final List<String> dependencyIds = new ArrayList<>();
  private FailedDependencyAction failedDependencyAction;
  private final List<String> notifyUponCompletionEmailAddresses =
    new ArrayList<String>();
  private final List<String> notifyUponErrorEmailAddresses =
    new ArrayList<String>();
  private final List<String> notifyUponCompletionEmailAddresses = new ArrayList<>();
  private final List<String> notifyUponErrorEmailAddresses = new ArrayList<>();
  /**
   * Whether the arguments provided by the user, indicate that the task should
@@ -300,4 +297,4 @@
    }
    return arg;
  }
}
}