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

jvergara
19.32.2007 232d13d704160f8b3f8a7a3acfabee33d5349fc1
opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/TestUtilities.java
@@ -103,9 +103,7 @@
    args.add(Integer.toString(jmxPort));
    args.add("-w");
    args.add(DIRECTORY_MANAGER_PASSWORD);
    if (isWindows()) {
      args.add("-n"); // don't install Windows service
    }
    ProcessBuilder pb = new ProcessBuilder(args);
    Process p = pb.start();
    if (p.waitFor() != 0) {
@@ -151,8 +149,4 @@
  static public File getQuickSetupTestServerRootDir() {
    return new File(getQuickSetupTestWorkspace(), "OpenDS");
  }
  static public boolean isWindows() {
    return File.separator.equals("\\");
  }
}