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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/schema/JPEGSyntax.java
@@ -96,7 +96,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_OCTET_STRING_OID);
    if (defaultEqualityMatchingRule == null)
@@ -134,7 +133,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_JPEG_NAME;
  }
@@ -147,7 +145,6 @@
   */
  public String getOID()
  {
    return SYNTAX_JPEG_OID;
  }
@@ -160,7 +157,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_JPEG_DESCRIPTION;
  }
@@ -176,7 +172,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -192,7 +187,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    return defaultOrderingMatchingRule;
  }
@@ -208,7 +202,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    return defaultSubstringMatchingRule;
  }
@@ -224,7 +217,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // There is no approximate matching rule by default.
    return null;
  }
@@ -246,7 +238,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    // All values will be acceptable for the JPEG syntax.
    return true;
  }