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

Jean-Noël Rouvignac
05.10.2016 2a6a436cf43f43eeb25210a5c72301a932598d1c
opendj-server-legacy/src/main/java/org/opends/server/backends/RootDSEBackend.java
@@ -238,24 +238,11 @@
   */
  private void addAllUserDefinedAttrs(List<Attribute> userDefinedAttrs, Entry configEntry)
  {
    for (List<Attribute> attrs : configEntry.getUserAttributes().values())
    for (Attribute a : configEntry.getAllAttributes())
    {
      for (Attribute a : attrs)
      if (!isDSEConfigAttribute(a))
      {
        if (!isDSEConfigAttribute(a))
        {
          userDefinedAttrs.add(a);
        }
      }
    }
    for (List<Attribute> attrs : configEntry.getOperationalAttributes().values())
    {
      for (Attribute a : attrs)
      {
        if (!isDSEConfigAttribute(a))
        {
          userDefinedAttrs.add(a);
        }
        userDefinedAttrs.add(a);
      }
    }
  }