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

diff --git a/opends/src/server/org/opends/server/schema/UUIDSyntax.java b/opends/src/server/org/opends/server/schema/UUIDSyntax.java
index 4d3472e..ca0953f 100644
--- a/opends/src/server/org/opends/server/schema/UUIDSyntax.java
+++ b/opends/src/server/org/opends/server/schema/UUIDSyntax.java
@@ -92,7 +92,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
     defaultEqualityMatchingRule =
          DirectoryServer.getEqualityMatchingRule(EMR_UUID_OID);
     if (defaultEqualityMatchingRule == null)
@@ -121,7 +120,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_UUID_NAME;
   }
 
@@ -134,7 +132,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_UUID_OID;
   }
 
@@ -147,7 +144,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_UUID_DESCRIPTION;
   }
 
@@ -163,7 +159,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -179,7 +174,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     return defaultOrderingMatchingRule;
   }
 
@@ -195,7 +189,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     // There is no substring matching rule by default.
     return null;
   }
@@ -212,7 +205,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     // There is no approximate matching rule by default.
     return null;
   }
@@ -234,8 +226,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
-
     // We will only accept values that look like valid UUIDs.  This means that
     // all values must be in the form HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH,
     // where "H" represents a hexadecimal digit.  First, make sure that the

--
Gitblit v1.10.0