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

Jean-Noel Rouvignac
16.59.2015 b0a00d248d3f6ae91627490e7a177d9ad5184331
opendj-server-legacy/src/main/java/org/opends/server/tools/tasks/TaskClient.java
@@ -157,15 +157,9 @@
    return entryDN;
  }
  private static boolean isScheduleRecurring(
      TaskScheduleInformation information)
  private static boolean isScheduleRecurring(TaskScheduleInformation information)
  {
    boolean scheduleRecurring = false;
    if (information.getRecurringDateTime() != null) {
      scheduleRecurring = true;
    }
    return scheduleRecurring;
    return information.getRecurringDateTime() != null;
  }
  /**