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

lutoff
30.50.2007 165cc33c42a1e3186b2d68decaa236bcfe83decf
opends/src/server/org/opends/server/util/args/SubCommandArgumentParser.java
@@ -1314,6 +1314,10 @@
    int indentNb = 0;
    for (SubCommand sc : subCommands.values())
    {
      if (sc.isHidden())
      {
        continue;
      }
      if (sc.getName().length() > indentNb )
      {
        indentNb = sc.getName().length();
@@ -1322,6 +1326,10 @@
    indentNb++;
    for (SubCommand sc : subCommands.values())
    {
      if (sc.isHidden())
      {
        continue;
      }
      buffer.append("    " + sc.getName());
      for (int i=0; i < indentNb - sc.getName().length() ; i++)
      {