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

Gaetan Boismal
08.32.2015 441586de67bf765e5e065d77c81e1cf8d53cdb45
OPENDJ-2092 Fix little bug

Done by fixing regression from r11772
1 files modified
4 ■■■■ changed files
opendj-sdk/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/NewAttributePanel.java 4 ●●●● patch | view | raw | blame | history
opendj-sdk/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/NewAttributePanel.java
@@ -690,9 +690,9 @@
    Object o = parent.getSelectedItem();
    if (NO_PARENT.equals(o))
    {
      return (AttributeType) o;
      return null;
    }
    return null;
    return (AttributeType) o;
  }
  private MatchingRule getApproximateMatchingRule()