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

neil_a_wilson
01.18.2007 3e3246e42af6979556dec66ec10ad3d3e009217c
opendj-sdk/opends/src/server/org/opends/server/schema/DistinguishedNameSyntax.java
@@ -116,7 +116,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_DN_OID);
    if (defaultEqualityMatchingRule == null)
@@ -145,7 +144,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_DN_NAME;
  }
@@ -158,7 +156,6 @@
   */
  public String getOID()
  {
    return SYNTAX_DN_OID;
  }
@@ -171,7 +168,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_DN_DESCRIPTION;
  }
@@ -187,7 +183,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -203,7 +198,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    // There is no ordering matching rule by default.
    return null;
  }
@@ -220,7 +214,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    return defaultSubstringMatchingRule;
  }
@@ -236,7 +229,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // There is no approximate matching rule by default.
    return null;
  }
@@ -258,7 +250,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    // Use the DN code to make this determination.
    try
    {