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

Jean-Noel Rouvignac
19.47.2015 2dc073d0f37048372498e13ffe84455896bac945
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/BackupPanel.java
@@ -350,7 +350,7 @@
    setPrimaryValid(lBackupOptions);
    backupIDInitialized = false;
    final LinkedHashSet<LocalizableMessage> errors = new LinkedHashSet<LocalizableMessage>();
    final LinkedHashSet<LocalizableMessage> errors = new LinkedHashSet<>();
    if (!allBackends.isSelected())
    {
@@ -454,7 +454,7 @@
      public Void processBackgroundTask() throws Throwable
      {
        // Open the backup directory and make sure it is valid.
        LinkedHashSet<BackupInfo> backups = new LinkedHashSet<BackupInfo>();
        LinkedHashSet<BackupInfo> backups = new LinkedHashSet<>();
        try
        {
          BackupDirectory backupDir =
@@ -630,7 +630,7 @@
    public BackupTask(ControlPanelInfo info, ProgressDialog dlg)
    {
      super(info, dlg);
      backendSet = new HashSet<String>();
      backendSet = new HashSet<>();
      if (!allBackends.isSelected())
      {
        backendSet.add((String)backends.getSelectedItem());
@@ -749,7 +749,7 @@
    /** {@inheritDoc} */
    protected ArrayList<String> getCommandLineArguments()
    {
      ArrayList<String> args = new ArrayList<String>();
      ArrayList<String> args = new ArrayList<>();
      args.add("--backupDirectory");
      args.add(dir);