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

kenneth_suter
18.57.2007 fa0801bfedb9c593adfd2bf0206bd00043b6b1a2
opends/src/quicksetup/org/opends/quicksetup/Configuration.java
@@ -200,12 +200,9 @@
    Set<String> outsidePaths = new HashSet<String>();
    for (String path : paths) {
      File fullDbPath;
      // Assume that if the path starts with a file separator
      // that it is an absolute path.  Otherwise its a relative
      // path.
      if (path.startsWith(File.separator)) {
        fullDbPath = new File(path);
      File pathFile = new File(path);
      if (pathFile.isAbsolute()) {
        fullDbPath = pathFile;
      } else {
        fullDbPath = new File(install.getRootDirectory(), path);
      }