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

Jean-Noel Rouvignac
16.57.2015 a41662c1136b2bb4a4198df89e0e87d2be3ef099
opendj-server-legacy/src/main/java/org/opends/server/api/AttributeSyntax.java
@@ -349,16 +349,10 @@
    buffer.append(getOID());
    String description = getDescription();
    if ((description == null) || (description.length() == 0))
    if (description != null && description.length() != 0)
    {
      buffer.append(" )");
      buffer.append(" DESC '").append(description).append("'");
    }
    else
    {
      buffer.append(" DESC '");
      buffer.append(description);
      buffer.append("' )");
    }
    buffer.append(" )");
  }
}