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

diff --git a/opends/src/server/org/opends/server/schema/IntegerSyntax.java b/opends/src/server/org/opends/server/schema/IntegerSyntax.java
index ecd12af..d802fda 100644
--- a/opends/src/server/org/opends/server/schema/IntegerSyntax.java
+++ b/opends/src/server/org/opends/server/schema/IntegerSyntax.java
@@ -128,7 +128,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
     defaultEqualityMatchingRule =
          DirectoryServer.getEqualityMatchingRule(EMR_INTEGER_OID);
     if (defaultEqualityMatchingRule == null)
@@ -166,7 +165,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_INTEGER_NAME;
   }
 
@@ -179,7 +177,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_INTEGER_OID;
   }
 
@@ -192,7 +189,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_INTEGER_DESCRIPTION;
   }
 
@@ -208,7 +204,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -224,7 +219,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     return defaultOrderingMatchingRule;
   }
 
@@ -240,7 +234,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     return defaultSubstringMatchingRule;
   }
 
@@ -256,7 +249,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     // There is no approximate matching rule by default.
     return null;
   }
@@ -278,7 +270,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
     String valueString = value.stringValue();
     int    length      = valueString.length();
 

--
Gitblit v1.10.0