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

jvergara
26.22.2007 bcdab6d3104e368c131bf63d91866fec130c4481
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/uninstaller/Uninstaller.java
@@ -527,6 +527,10 @@
      if (isWindowsServiceEnabled())
      {
        status = UninstallProgressStep.DISABLING_WINDOWS_SERVICE;
        if (displaySeparator)
        {
          notifyListeners(getTaskSeparator());
        }
        disableWindowsService();
        displaySeparator = true;
      }
@@ -943,14 +947,7 @@
    return Utils.getPath(getLibrariesPath(), "OpenDS.jar");
  }
  /**
   * Returns the path to the aspectj jar file.
   * @return the path to the aspectj jar file.
   */
  private String getAspectJJarPath()
  {
    return Utils.getPath(getLibrariesPath(), "aspectjrt.jar");
  }
  /**
@@ -1183,7 +1180,7 @@
            String line = reader.readLine();
            while (line != null)
            {
              StringBuffer buf = new StringBuffer();
              StringBuilder buf = new StringBuilder();
              if (!isFirstLine)
              {
                buf.append(formatter.getLineBreak());
@@ -1257,7 +1254,7 @@
     boolean accept =
          !installationPath.equals(file)
              && !librariesFile.equals(file)
              && !equalsOrDescendant(file, librariesFile)
              && !quicksetupFile.equals(file)
              && !openDSFile.equals(file);
@@ -1434,3 +1431,4 @@
    }
  }
}