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

diff --git a/opends/src/server/org/opends/server/schema/PostalAddressSyntax.java b/opends/src/server/org/opends/server/schema/PostalAddressSyntax.java
index 735fa0a..3f4318b 100644
--- a/opends/src/server/org/opends/server/schema/PostalAddressSyntax.java
+++ b/opends/src/server/org/opends/server/schema/PostalAddressSyntax.java
@@ -95,7 +95,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
     defaultEqualityMatchingRule =
          DirectoryServer.getEqualityMatchingRule(EMR_CASE_IGNORE_OID);
     if (defaultEqualityMatchingRule == null)
@@ -124,7 +123,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_POSTAL_ADDRESS_NAME;
   }
 
@@ -137,7 +135,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_POSTAL_ADDRESS_OID;
   }
 
@@ -150,7 +147,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_POSTAL_ADDRESS_DESCRIPTION;
   }
 
@@ -166,7 +162,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -182,7 +177,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     // Ordering matching will not be allowed by default.
     return null;
   }
@@ -199,7 +193,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     return defaultSubstringMatchingRule;
   }
 
@@ -215,7 +208,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     // Approximate matching will not be allowed by default.
     return null;
   }
@@ -237,7 +229,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
     // We'll allow any value.
     return true;
   }

--
Gitblit v1.10.0