From 310df200f78f7d98cc52e4ab97d8a5feb744fa52 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Thu, 28 Apr 2016 09:04:35 +0000
Subject: [PATCH] UCDetector and AutoRefactor code cleanup

---
 opendj-server-legacy/src/main/java/org/opends/server/tools/ExportLDIF.java |   19 ++-----------------
 1 files changed, 2 insertions(+), 17 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/tools/ExportLDIF.java b/opendj-server-legacy/src/main/java/org/opends/server/tools/ExportLDIF.java
index 4181bc2..30a55ee 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/tools/ExportLDIF.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/tools/ExportLDIF.java
@@ -78,7 +78,6 @@
   public static void main(String[] args)
   {
     int retCode = mainExportLDIF(args, true, System.out, System.err);
-
     if(retCode != 0)
     {
       System.exit(filterExitCode(retCode));
@@ -88,18 +87,6 @@
   /**
    * Processes the command-line arguments and invokes the export process.
    *
-   * @param  args  The command-line arguments provided to this program.
-   *
-   * @return The error code.
-   */
-  public static int mainExportLDIF(String[] args)
-  {
-    return mainExportLDIF(args, true, System.out, System.err);
-  }
-
-  /**
-   * Processes the command-line arguments and invokes the export process.
-   *
    * @param  args              The command-line arguments provided to this
    *                           program.
    * @param  initializeServer  Indicates whether to initialize the server.
@@ -243,13 +230,13 @@
               BooleanArgument.builder("encryptLDIF")
                       .shortIdentifier('y')
                       .description(INFO_LDIFEXPORT_DESCRIPTION_ENCRYPT_LDIF.get())
-                      .hidden() // See issue #27
+                      .hidden() // See issue OPENDJ-448
                       .buildAndAddToParser(argParser);
       signHash =
               BooleanArgument.builder("signHash")
                       .shortIdentifier('s')
                       .description(INFO_LDIFEXPORT_DESCRIPTION_SIGN_HASH.get())
-                      .hidden() // See issue #28
+                      .hidden() // See issue OPENDJ-448
                       .buildAndAddToParser(argParser);
 
       displayUsage = showUsageArgument();
@@ -306,7 +293,6 @@
     return process(argParser, initializeServer, out, err);
   }
 
-  /** {@inheritDoc} */
   @Override
   public void addTaskAttributes(List<RawAttribute> attributes)
   {
@@ -660,7 +646,6 @@
     return results;
   }
 
-  /** {@inheritDoc} */
   @Override
   public String getTaskId() {
     // NYI.

--
Gitblit v1.10.0