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

jvergara
13.06.2009 6237ff7fac6167dded7c181a3a096f074f5fd420
opends/src/server/org/opends/server/tools/ConfigureWindowsService.java
@@ -433,7 +433,7 @@
    String[] cmd;
    if (isVista())
    if (SetupUtils.hasUAC())
    {
      cmd = new String[] {
          getLauncherBinaryFullPath(),
@@ -518,7 +518,7 @@
    Message msg;
    String serverRoot = getServerRoot();
    String[] cmd;
    if (isVista())
    if (SetupUtils.hasUAC())
    {
      cmd = new String[] {
          getLauncherBinaryFullPath(),
@@ -598,7 +598,7 @@
    int returnValue;
    Message msg;
    String[] cmd;
    if (isVista())
    if (SetupUtils.hasUAC())
    {
      cmd = new String[] {
          getLauncherBinaryFullPath(),
@@ -831,15 +831,4 @@
  {
    return getServerRoot()+"\\lib\\winlauncher.exe";
  }
  /**
   * Indicates whether the underlying operating system is Windows Vista.
   *
   * @return  {@code true} if the underlying operating system is Windows
   *          Vista, or {@code false} if not.
   */
  private static boolean isVista()
  {
    return SetupUtils.isVista();
  }
}