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

kenneth_suter
17.23.2007 f4ee26cf95755a2ea8081cb38de9c7b1f1f01175
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/ui/StepsPanel.java
@@ -37,7 +37,6 @@
import javax.swing.JLabel;
import javax.swing.JPanel;
import org.opends.quicksetup.GuiApplication;
import org.opends.quicksetup.WizardStep;
/**
@@ -56,15 +55,13 @@
  HashMap<WizardStep, JLabel> hmIcons = new HashMap<WizardStep, JLabel>();
  GuiApplication application = null;
  /**
   * Creates a StepsPanel.
   * @param app Application whose steps this class represents
   */
  public StepsPanel(GuiApplication app)
  {
    this.application = app;
    super(app);
    createLayout(app);
  }
@@ -76,7 +73,7 @@
   */
  public void setDisplayedStep(WizardStep step)
  {
    for (WizardStep s : application.getWizardSteps())
    for (WizardStep s : getApplication().getWizardSteps())
    {
      if (s.equals(step))
      {