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

kenneth_suter
07.31.2007 5adde80225f547ffe8d50ca83efd121e495d8e53
opends/src/quicksetup/org/opends/quicksetup/util/PlainTextProgressMessageFormatter.java
@@ -28,6 +28,7 @@
package org.opends.quicksetup.util;
import org.opends.quicksetup.i18n.ResourceProvider;
import org.opends.quicksetup.Constants;
/**
 * This is an implementation of the ProgressMessageFormatter class that
@@ -41,11 +42,6 @@
  private String errorText;
  /**
   * The line break in plain text.
   */
  private static String LINE_BREAK = System.getProperty("line.separator");
  /**
   * The space in plain text.
   */
  private static String SPACE = " ";
@@ -87,7 +83,7 @@
    String result;
    if (applyMargin)
    {
      result = LINE_BREAK+text;
      result = Constants.LINE_SEPARATOR+text;
    } else
    {
      result = text;
@@ -108,7 +104,7 @@
    String result;
    if (applyMargin)
    {
      result = LINE_BREAK+text;
      result = Constants.LINE_SEPARATOR+text;
    } else
    {
      result = text;
@@ -226,7 +222,7 @@
    String result;
    if (applyMargin)
    {
      result = LINE_BREAK+msg;
      result = Constants.LINE_SEPARATOR+msg;
    } else
    {
      result = msg;
@@ -240,7 +236,7 @@
   */
  public String getLineBreak()
  {
    return LINE_BREAK;
    return Constants.LINE_SEPARATOR;
  }
  /**