From a49dee3f75d6e2548e9114d9495655dd56f06973 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.

---
 opends/src/server/org/opends/server/schema/EnhancedGuideSyntax.java |   10 ----------
 1 files changed, 0 insertions(+), 10 deletions(-)

diff --git a/opends/src/server/org/opends/server/schema/EnhancedGuideSyntax.java b/opends/src/server/org/opends/server/schema/EnhancedGuideSyntax.java
index 9221ab0..1a98150 100644
--- a/opends/src/server/org/opends/server/schema/EnhancedGuideSyntax.java
+++ b/opends/src/server/org/opends/server/schema/EnhancedGuideSyntax.java
@@ -98,7 +98,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
     defaultEqualityMatchingRule =
          DirectoryServer.getEqualityMatchingRule(EMR_OCTET_STRING_OID);
     if (defaultEqualityMatchingRule == null)
@@ -136,7 +135,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_ENHANCED_GUIDE_NAME;
   }
 
@@ -149,7 +147,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_ENHANCED_GUIDE_OID;
   }
 
@@ -162,7 +159,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_ENHANCED_GUIDE_DESCRIPTION;
   }
 
@@ -178,7 +174,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -194,7 +189,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     return defaultOrderingMatchingRule;
   }
 
@@ -210,7 +204,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     return defaultSubstringMatchingRule;
   }
 
@@ -226,7 +219,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     // There is no approximate matching rule by default.
     return null;
   }
@@ -248,8 +240,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
-
     // Get a lowercase string version of the provided value.
     String valueStr = toLowerCase(value.stringValue());
 

--
Gitblit v1.10.0