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/FaxNumberSyntax.java |   10 ----------
 1 files changed, 0 insertions(+), 10 deletions(-)

diff --git a/opends/src/server/org/opends/server/schema/FaxNumberSyntax.java b/opends/src/server/org/opends/server/schema/FaxNumberSyntax.java
index df117f1..66353e7 100644
--- a/opends/src/server/org/opends/server/schema/FaxNumberSyntax.java
+++ b/opends/src/server/org/opends/server/schema/FaxNumberSyntax.java
@@ -129,7 +129,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
     defaultEqualityMatchingRule =
          DirectoryServer.getEqualityMatchingRule(EMR_CASE_IGNORE_OID);
     if (defaultEqualityMatchingRule == null)
@@ -167,7 +166,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_FAXNUMBER_NAME;
   }
 
@@ -180,7 +178,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_FAXNUMBER_OID;
   }
 
@@ -193,7 +190,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_FAXNUMBER_DESCRIPTION;
   }
 
@@ -209,7 +205,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -225,7 +220,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     return defaultOrderingMatchingRule;
   }
 
@@ -241,7 +235,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     return defaultSubstringMatchingRule;
   }
 
@@ -257,7 +250,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     // There is no approximate matching rule by default.
     return null;
   }
@@ -279,8 +271,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
-
     // Get a lowercase string representation of the value and find its length.
     String valueString = toLowerCase(value.stringValue());
     int    valueLength = valueString.length();

--
Gitblit v1.10.0