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

jvergara
08.44.2008 3f243c2155d1b678c1e8a1bb225fc833d7e1cea9
Fix for issue 3110 (Some tools are not defined in the "config/java.properties" file)

Add systematically the command-lines to the java.properties file even if no argument is found.
1 files modified
16 ■■■■■ changed files
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/InstallerHelper.java 16 ●●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/InstallerHelper.java
@@ -760,6 +760,14 @@
          writer.write(serverScripts[i]+".java-args=-server");
        }
      }
      else
      {
        for (int i=0; i<serverScripts.length; i++)
        {
          writer.newLine();
          writer.write(serverScripts[i]+".java-args=");
        }
      }
      if (supportsClient || supportsClientInitialHeap)
@@ -783,6 +791,14 @@
          writer.write(clientScripts[i]+".java-args="+arg);
        }
      }
      else
      {
        for (int i=0; i<clientScripts.length; i++)
        {
          writer.newLine();
          writer.write(clientScripts[i]+".java-args=");
        }
      }
      if (supportsClient || supportsServer || supportsClientInitialHeap)
      {