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

neil_a_wilson
01.18.2007 3e3246e42af6979556dec66ec10ad3d3e009217c
opendj-sdk/opends/src/server/org/opends/server/schema/OctetStringSubstringMatchingRule.java
@@ -82,7 +82,6 @@
  public void initializeMatchingRule(ConfigEntry configEntry)
         throws ConfigException, InitializationException
  {
    // No initialization is required.
  }
@@ -96,7 +95,6 @@
   */
  public String getName()
  {
    return SMR_OCTET_STRING_NAME;
  }
@@ -109,7 +107,6 @@
   */
  public String getOID()
  {
    return SMR_OCTET_STRING_OID;
  }
@@ -123,7 +120,6 @@
   */
  public String getDescription()
  {
    // There is no standard description for this matching rule.
    return null;
  }
@@ -138,7 +134,6 @@
   */
  public String getSyntaxOID()
  {
    return SYNTAX_SUBSTRING_ASSERTION_OID;
  }
@@ -158,7 +153,6 @@
  public ByteString normalizeValue(ByteString value)
         throws DirectoryException
  {
    return new ASN1OctetString(value.value());
  }
@@ -178,7 +172,6 @@
  public ByteString normalizeSubstring(ByteString substring)
         throws DirectoryException
  {
    // This is exactly the same as normalizing a full value.
    return new ASN1OctetString(substring.value());
  }
@@ -206,8 +199,6 @@
                                       List<ByteString> subAnyElements,
                                       ByteString subFinal)
  {
    byte[] valueBytes = value.value();
    int valueLength = valueBytes.length;