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

kenneth_suter
05.02.2007 0f7b83578af3a66529590cf0516dc8bc1b79b8c1
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java
@@ -94,7 +94,7 @@
  public String getFormattedError(String text, boolean applyMargin)
  {
    String html;
    if (!containsHtml(text)) {
    if (!Utils.containsHtml(text)) {
      html = UIFactory.getIconHtml(UIFactory.IconType.ERROR_LARGE)
          + SPACE
          + SPACE
@@ -127,7 +127,7 @@
  public String getFormattedWarning(String text, boolean applyMargin)
  {
    String html;
    if (!containsHtml(text)) {
    if (!Utils.containsHtml(text)) {
      html =
        UIFactory.getIconHtml(UIFactory.IconType.WARNING_LARGE)
            + SPACE
@@ -620,10 +620,5 @@
    }
  }
  private boolean containsHtml(String text) {
    return (text != null &&
            text.indexOf('<') != -1 &&
            text.indexOf('>') != -1);
  }
}