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

Jean-Noël Rouvignac
29.24.2016 41e57bd7f69b68626fd780e8651535f8d0b19d4b
DirectoryServer.java: In getAttributeTypeOrNull(String), delegated to getAttributeType(String)
1 files modified
2 ■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/core/DirectoryServer.java 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/core/DirectoryServer.java
@@ -2519,7 +2519,7 @@
   */
  public static AttributeType getAttributeTypeOrNull(String attrName)
  {
    AttributeType attrType = directoryServer.schema.getAttributeType(attrName);
    AttributeType attrType = getAttributeType(attrName);
    return attrType.isPlaceHolder() ? null : attrType;
  }