From 3e3246e42af6979556dec66ec10ad3d3e009217c Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 01 Mar 2007 05:18:42 +0000
Subject: [PATCH] Remove blank lines at the beginning of methods left after eliminating the debugEnter and debugConstructor calls.

---
 opendj-sdk/opends/src/server/org/opends/server/schema/OctetStringSubstringMatchingRule.java |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/schema/OctetStringSubstringMatchingRule.java b/opendj-sdk/opends/src/server/org/opends/server/schema/OctetStringSubstringMatchingRule.java
index 5724c71..25d5889 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/schema/OctetStringSubstringMatchingRule.java
+++ b/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;
 

--
Gitblit v1.10.0