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

jvergara
07.54.2008 1f30b9e5b6d1f245470a152a325e9ad69928c01c
Do not wrap the contents when calling print() since we call this method when we have printed something on the same line, so the resulting wrapping might be broken.
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/util/cli/ConsoleApplication.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/util/cli/ConsoleApplication.java
@@ -396,7 +396,7 @@
  public final void printProgress(Message msg) {
    if (!isQuiet())
    {
      out.print(wrapText(msg, MAX_LINE_WIDTH));
      out.print(msg);
    }
  }