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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/schema/OtherMailboxSyntax.java
@@ -94,7 +94,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_CASE_IGNORE_LIST_OID);
    if (defaultEqualityMatchingRule == null)
@@ -123,7 +122,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_OTHER_MAILBOX_NAME;
  }
@@ -136,7 +134,6 @@
   */
  public String getOID()
  {
    return SYNTAX_OTHER_MAILBOX_OID;
  }
@@ -149,7 +146,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_OTHER_MAILBOX_DESCRIPTION;
  }
@@ -165,7 +161,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -181,7 +176,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    // Ordering matching is not allowed by default.
    return null;
  }
@@ -198,7 +192,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    return defaultSubstringMatchingRule;
  }
@@ -214,7 +207,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // Approximate matching is not allowed by default.
    return null;
  }
@@ -236,8 +228,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    // Check to see if the provided value was null.  If so, then that's not
    // acceptable.
    if (value == null)