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

Gaetan Boismal
08.32.2015 5c6935281755f20fa35eee9e2f7a94fe8160b753
OPENDJ-2092 Fix little bug

Done by fixing regression from r11772
1 files modified
4 ■■■■ changed files
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/NewAttributePanel.java 4 ●●●● patch | view | raw | blame | history
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()