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

diff --git a/opends/src/server/org/opends/server/schema/IA5StringSyntax.java b/opends/src/server/org/opends/server/schema/IA5StringSyntax.java
index e2edfe8..45f55a9 100644
--- a/opends/src/server/org/opends/server/schema/IA5StringSyntax.java
+++ b/opends/src/server/org/opends/server/schema/IA5StringSyntax.java
@@ -100,7 +100,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
     defaultApproximateMatchingRule =
          DirectoryServer.getApproximateMatchingRule(AMR_DOUBLE_METAPHONE_OID);
     if (defaultApproximateMatchingRule == null)
@@ -147,7 +146,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_IA5_STRING_NAME;
   }
 
@@ -160,7 +158,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_IA5_STRING_OID;
   }
 
@@ -173,7 +170,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_IA5_STRING_DESCRIPTION;
   }
 
@@ -189,7 +185,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -205,7 +200,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     return defaultOrderingMatchingRule;
   }
 
@@ -221,7 +215,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     return defaultSubstringMatchingRule;
   }
 
@@ -237,7 +230,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     return defaultApproximateMatchingRule;
   }
 
@@ -258,8 +250,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
-
     // We will allow any value that does not contain any non-ASCII characters.
     // Empty values are acceptable as well.
     for (byte b : value.value())

--
Gitblit v1.10.0