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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/schema/IntegerSyntax.java
@@ -128,7 +128,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_INTEGER_OID);
    if (defaultEqualityMatchingRule == null)
@@ -166,7 +165,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_INTEGER_NAME;
  }
@@ -179,7 +177,6 @@
   */
  public String getOID()
  {
    return SYNTAX_INTEGER_OID;
  }
@@ -192,7 +189,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_INTEGER_DESCRIPTION;
  }
@@ -208,7 +204,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -224,7 +219,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    return defaultOrderingMatchingRule;
  }
@@ -240,7 +234,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    return defaultSubstringMatchingRule;
  }
@@ -256,7 +249,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // There is no approximate matching rule by default.
    return null;
  }
@@ -278,7 +270,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    String valueString = value.stringValue();
    int    length      = valueString.length();