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

diff --git a/opendj-sdk/opends/src/server/org/opends/server/schema/GuideSyntax.java b/opendj-sdk/opends/src/server/org/opends/server/schema/GuideSyntax.java
index 479e971..29dc4b0 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/schema/GuideSyntax.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/schema/GuideSyntax.java
@@ -97,7 +97,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
     defaultEqualityMatchingRule =
          DirectoryServer.getEqualityMatchingRule(EMR_OCTET_STRING_OID);
     if (defaultEqualityMatchingRule == null)
@@ -135,7 +134,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_GUIDE_NAME;
   }
 
@@ -148,7 +146,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_GUIDE_OID;
   }
 
@@ -161,7 +158,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_GUIDE_DESCRIPTION;
   }
 
@@ -177,7 +173,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -193,7 +188,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     return defaultOrderingMatchingRule;
   }
 
@@ -209,7 +203,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     return defaultSubstringMatchingRule;
   }
 
@@ -225,7 +218,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     // There is no approximate matching rule by default.
     return null;
   }
@@ -247,8 +239,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
-
     // Get a lowercase string version of the provided value.
     String valueStr = toLowerCase(value.stringValue());
 
@@ -301,8 +291,6 @@
   public static boolean criteriaIsValid(String criteria, String valueStr,
                                         StringBuilder invalidReason)
   {
-
-
     // See if the criteria starts with a '!'.  If so, then just evaluate
     // everything after that as a criteria.
     char c = criteria.charAt(0);

--
Gitblit v1.10.0