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

jvergara
07.54.2008 45158f058bac0ed5150789cbe01cbc49482d585f
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
opendj-sdk/opends/src/server/org/opends/server/util/cli/ConsoleApplication.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/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);
    }
  }