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

Jean-Noel Rouvignac
06.42.2015 e79461c53adce17f83f30954f8a03d67bb761a1f
opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/DataOptionsPanel.java
@@ -68,21 +68,16 @@
 */
public class DataOptionsPanel extends QuickSetupStepPanel
{
  private Component lastFocusComponent;
  private static final long serialVersionUID = 1815782841921928118L;
  private Component lastFocusComponent;
  private UserData defaultUserData;
  private HashMap<FieldName, JLabel> hmLabels = new HashMap<FieldName, JLabel>();
  private HashMap<FieldName, JTextComponent> hmFields = new HashMap<FieldName, JTextComponent>();
  private HashMap<NewSuffixOptions.Type, JRadioButton> hmRadioButtons =
      new HashMap<NewSuffixOptions.Type, JRadioButton>();
  private HashMap<FieldName, JLabel> hmLabels = new HashMap<>();
  private HashMap<FieldName, JTextComponent> hmFields = new HashMap<>();
  private HashMap<NewSuffixOptions.Type, JRadioButton> hmRadioButtons = new HashMap<>();
  private JButton ldifBrowseButton;
  private JComboBox<BackendTypeUIAdapter> backendTypeComboBox;
  /**
@@ -400,7 +395,7 @@
  /** Creates the components and populates the Maps with them. */
  private void populateComponentMaps()
  {
    final HashMap<FieldName, LabelFieldDescriptor> hm = new HashMap<FieldName, LabelFieldDescriptor>();
    final HashMap<FieldName, LabelFieldDescriptor> hm = new HashMap<>();
    final LabelFieldDescriptor baseDNLabelDescriptor = new LabelFieldDescriptor(
        INFO_BASE_DN_LABEL.get(), INFO_BASE_DN_TOOLTIP.get(), LabelFieldDescriptor.FieldType.TEXTFIELD,