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

diff --git a/opends/src/server/org/opends/server/schema/TeletexTerminalIdentifierSyntax.java b/opends/src/server/org/opends/server/schema/TeletexTerminalIdentifierSyntax.java
index 1cbf736..724143e 100644
--- a/opends/src/server/org/opends/server/schema/TeletexTerminalIdentifierSyntax.java
+++ b/opends/src/server/org/opends/server/schema/TeletexTerminalIdentifierSyntax.java
@@ -127,7 +127,6 @@
   public void initializeSyntax(ConfigEntry configEntry)
          throws ConfigException
   {
-
     defaultEqualityMatchingRule =
          DirectoryServer.getEqualityMatchingRule(EMR_CASE_IGNORE_OID);
     if (defaultEqualityMatchingRule == null)
@@ -165,7 +164,6 @@
    */
   public String getSyntaxName()
   {
-
     return SYNTAX_TELETEX_TERM_ID_NAME;
   }
 
@@ -178,7 +176,6 @@
    */
   public String getOID()
   {
-
     return SYNTAX_TELETEX_TERM_ID_OID;
   }
 
@@ -191,7 +188,6 @@
    */
   public String getDescription()
   {
-
     return SYNTAX_TELETEX_TERM_ID_DESCRIPTION;
   }
 
@@ -207,7 +203,6 @@
    */
   public EqualityMatchingRule getEqualityMatchingRule()
   {
-
     return defaultEqualityMatchingRule;
   }
 
@@ -223,7 +218,6 @@
    */
   public OrderingMatchingRule getOrderingMatchingRule()
   {
-
     return defaultOrderingMatchingRule;
   }
 
@@ -239,7 +233,6 @@
    */
   public SubstringMatchingRule getSubstringMatchingRule()
   {
-
     return defaultSubstringMatchingRule;
   }
 
@@ -255,7 +248,6 @@
    */
   public ApproximateMatchingRule getApproximateMatchingRule()
   {
-
     // There is no approximate matching rule by default.
     return null;
   }
@@ -277,8 +269,6 @@
   public boolean valueIsAcceptable(ByteString value,
                                    StringBuilder invalidReason)
   {
-
-
     // Get a lowercase string representation of the value and find its length.
     String valueString = value.stringValue();
     int    valueLength = valueString.length();

--
Gitblit v1.10.0