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

Jean-Noël Rouvignac
04.51.2016 2d1ec373572251fa589b9552ed573f68c1e18557
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/CustomAttributePanel.java
@@ -578,7 +578,7 @@
    SortedSet<String> optionalByOcs = new TreeSet<>(lowerCaseComparator);
    for (ObjectClass oc : schema.getObjectClasses().values())
    {
      if (oc.getOptionalAttributeChain().contains(attr))
      if (oc.getOptionalAttributes().contains(attr))
      {
        optionalByOcs.add(oc.getNameOrOID());
      }
@@ -741,7 +741,7 @@
        {
          dependentClasses.add(o.getNameOrOID());
        }
        else if (o.getOptionalAttributeChain().contains(attribute))
        else if (o.getOptionalAttributes().contains(attribute))
        {
          dependentClasses.add(o.getNameOrOID());
        }