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

Gaetan Boismal
08.32.2015 2d3af58c2cee0a4a12390fae1eace3fdd15d9664
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/util/Utilities.java
@@ -170,11 +170,14 @@
  /**
   * Creates a combo box.
   *
   * @param <T>
   *          The combo box data type.
   * @return a combo box.
   */
  public static JComboBox createComboBox()
  public static <T> JComboBox<T> createComboBox()
  {
    JComboBox combo = new JComboBox();
    JComboBox<T> combo = new JComboBox<>();
    if (isMacOS())
    {
      combo.setOpaque(false);