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

jvergara
07.43.2009 b471bc6b9f2a087e8bb8e3adc6e5d1b32e80db8d
opends/src/guitools/org/opends/guitools/controlpanel/ui/BackupListPanel.java
@@ -537,16 +537,26 @@
    {
      String path;
      File f = new File(desc.getInstancePath(),
          org.opends.quicksetup.Installation.BACKUPS_PATH_RELATIVE);
      try
      if (desc.isLocal() || (desc.isWindows() == Utilities.isWindows()))
      {
        path = f.getCanonicalPath();
        File f = new File(desc.getInstancePath(),
            org.opends.quicksetup.Installation.BACKUPS_PATH_RELATIVE);
        try
        {
          path = f.getCanonicalPath();
        }
        catch (Throwable t)
        {
          path = f.getAbsolutePath();
        }
      }
      catch (Throwable t)
      else
      {
        path = f.getAbsolutePath();
        String separator = desc.isWindows() ? "\\" : "/";
        path = desc.getInstancePath() + separator +
        org.opends.quicksetup.Installation.BACKUPS_PATH_RELATIVE;
      }
      final String fPath = path;
      SwingUtilities.invokeLater(new Runnable()
      {