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

Jean-Noël Rouvignac
29.38.2016 d3f7287f96515499730a23f82871b706b234cf96
opendj-server-legacy/src/main/java/org/opends/server/config/ConfigEntry.java
@@ -195,8 +195,7 @@
   */
  public ConfigAttribute getConfigAttribute(ConfigAttribute stub) throws ConfigException
  {
    String attrName = stub.getName();
    AttributeType attrType = DirectoryServer.getAttributeTypeOrDefault(attrName.toLowerCase(), attrName);
    AttributeType attrType = DirectoryServer.getAttributeTypeOrDefault(stub.getName());
    List<Attribute> attrList = entry.getAttribute(attrType);
    return !attrList.isEmpty() ? stub.getConfigAttribute(attrList) : null;
  }