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

diff --git a/opendj-sdk/opends/src/server/org/opends/server/schema/BooleanSyntax.java b/opendj-sdk/opends/src/server/org/opends/server/schema/BooleanSyntax.java
index 9379d1a..4974760 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/schema/BooleanSyntax.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/schema/BooleanSyntax.java
@@ -115,8 +115,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
-
     defaultEqualityMatchingRule =
          DirectoryServer.getEqualityMatchingRule(EMR_BOOLEAN_OID);
     if (defaultEqualityMatchingRule == null)
@@ -136,7 +134,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_BOOLEAN_NAME;
   }
 
@@ -149,7 +146,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_BOOLEAN_OID;
   }
 
@@ -162,7 +158,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_BOOLEAN_DESCRIPTION;
   }
 
@@ -178,7 +173,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -194,7 +188,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     // Ordering matches are not allowed by default.
     return null;
   }
@@ -211,7 +204,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     // Substring matches are not allowed by default.
     return null;
   }
@@ -228,7 +220,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     // Approximate matches are not allowed by default.
     return null;
   }
@@ -250,7 +241,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
     String valueString = value.stringValue().toUpperCase();
 
     boolean returnValue = (valueString.equals("TRUE") ||
@@ -283,7 +273,6 @@
    */
   public static AttributeValue createBooleanValue(boolean b)
   {
-
     if (b)
     {
       return new AttributeValue(new ASN1OctetString("TRUE"),
@@ -311,7 +300,6 @@
   public static boolean decodeBooleanValue(ByteString normalizedValue)
          throws DirectoryException
   {
-
     String valueString = normalizedValue.stringValue();
     if (valueString.equals("TRUE"))
     {

--
Gitblit v1.10.0