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

diff --git a/opendj-sdk/opends/src/server/org/opends/server/schema/CountryStringSyntax.java b/opendj-sdk/opends/src/server/org/opends/server/schema/CountryStringSyntax.java
index eff7e95..c79793f 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/schema/CountryStringSyntax.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/schema/CountryStringSyntax.java
@@ -102,7 +102,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
     defaultApproximateMatchingRule =
          DirectoryServer.getApproximateMatchingRule(AMR_DOUBLE_METAPHONE_OID);
     if (defaultApproximateMatchingRule == null)
@@ -149,7 +148,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_COUNTRY_STRING_NAME;
   }
 
@@ -162,7 +160,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_COUNTRY_STRING_OID;
   }
 
@@ -175,7 +172,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_COUNTRY_STRING_DESCRIPTION;
   }
 
@@ -191,7 +187,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -207,7 +202,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     return defaultOrderingMatchingRule;
   }
 
@@ -223,7 +217,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     return defaultSubstringMatchingRule;
   }
 
@@ -239,7 +232,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     return defaultApproximateMatchingRule;
   }
 
@@ -260,7 +252,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
     String stringValue = toLowerCase(value.stringValue());
     if (stringValue.length() != 2)
     {

--
Gitblit v1.10.0