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

neil_a_wilson
01.18.2007 3e3246e42af6979556dec66ec10ad3d3e009217c
opendj-sdk/opends/src/server/org/opends/server/schema/OIDSyntax.java
@@ -93,7 +93,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_OID_OID);
    if (defaultEqualityMatchingRule == null)
@@ -122,7 +121,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_OID_NAME;
  }
@@ -135,7 +133,6 @@
   */
  public String getOID()
  {
    return SYNTAX_OID_OID;
  }
@@ -148,7 +145,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_OID_DESCRIPTION;
  }
@@ -164,7 +160,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -180,7 +175,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    // There is no ordering matching rule by default.
    return null;
  }
@@ -197,7 +191,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    return defaultSubstringMatchingRule;
  }
@@ -213,7 +206,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // There is no approximate matching rule by default.
    return null;
  }
@@ -235,7 +227,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    String lowerValue = toLowerCase(value.stringValue());
    return isValidSchemaElement(lowerValue, 0, lowerValue.length(),
                                invalidReason);