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

Violette Roche-Montane
07.50.2013 00d37e85955e374be365f1c34de5af1f69a6476c
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/ui/ProgressDialog.java
@@ -23,6 +23,7 @@
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Portions Copyright 2013 ForgeRock AS.
 */
package org.opends.quicksetup.ui;
@@ -66,8 +67,6 @@
  private JEditorPane detailsTextArea;
  private JScrollPane scroll;
  private Message lastText;
  private JFrame parent;
@@ -117,15 +116,6 @@
  }
  /**
   * Sets the title of the panel.
   * @param title the title of the panel.
   */
  public void setPanelTitle(Message title)
  {
    this.panelTitle = title;
  }
  /**
   * Returns the title of the panel.
   * @return the title of the panel
   */
@@ -242,7 +232,7 @@
    gbc.insets = UIFactory.getEmptyInsets();
    mainPanel.add(l, gbc);
    scroll = new JScrollPane();
    JScrollPane scroll = new JScrollPane();
    detailsTextArea = UIFactory.makeProgressPane(scroll);
    detailsTextArea.setBackground(
        UIFactory.CURRENT_STEP_PANEL_BACKGROUND);
@@ -253,9 +243,8 @@
        if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
        {
          String url = e.getURL().toString();
          Message newText = getFormatter().getFormattedAfterUrlClick(url,
          lastText = getFormatter().getFormattedAfterUrlClick(url,
              lastText);
          lastText = newText;
          setDetails(lastText);
        }
      }