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

jcduff
23.04.2008 f73b655466092169abac34833fb628fce1fcdebe
opends/src/server/org/opends/server/tools/dsconfig/DSConfig.java
@@ -290,6 +290,8 @@
   */
  private static final DebugTracer TRACER = getTracer();
  // This CLI is always using the administration connector with SSL
  private static final boolean alwaysSSL = true;
  /**
@@ -330,7 +332,7 @@
  public static int main(String[] args, boolean initializeServer,
      OutputStream outStream, OutputStream errStream) {
    DSConfig app = new DSConfig(System.in, outStream, errStream,
        new LDAPManagementContextFactory());
        new LDAPManagementContextFactory(alwaysSSL));
    // Only initialize the client environment when run as a standalone
    // application.
    if (initializeServer) {
@@ -1056,11 +1058,6 @@
    CommandBuilder commandBuilder =
      new CommandBuilder(commandName, subcommandName);
    if (advancedModeArgument.isPresent())
    {
      commandBuilder.addArgument(advancedModeArgument);
    }
    if ((factory != null) && (factory.getContextCommandBuilder() != null))
    {
      commandBuilder.append(factory.getContextCommandBuilder());