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/protocols/ldap/CompareRequestProtocolOp.java |   13 -------------
 1 files changed, 0 insertions(+), 13 deletions(-)

diff --git a/opends/src/server/org/opends/server/protocols/ldap/CompareRequestProtocolOp.java b/opends/src/server/org/opends/server/protocols/ldap/CompareRequestProtocolOp.java
index ed0628d..ba6e30b 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/CompareRequestProtocolOp.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/CompareRequestProtocolOp.java
@@ -76,7 +76,6 @@
   public CompareRequestProtocolOp(ASN1OctetString dn, String attributeType,
                                   ASN1OctetString assertionValue)
   {
-
     this.dn             = dn;
     this.attributeType  = attributeType;
     this.assertionValue = assertionValue;
@@ -91,7 +90,6 @@
    */
   public ASN1OctetString getDN()
   {
-
     return dn;
   }
 
@@ -104,7 +102,6 @@
    */
   public void setDN(ASN1OctetString dn)
   {
-
     this.dn = dn;
   }
 
@@ -117,7 +114,6 @@
    */
   public String getAttributeType()
   {
-
     return attributeType;
   }
 
@@ -130,7 +126,6 @@
    */
   public void setAttributeType(String attributeType)
   {
-
     this.attributeType = attributeType;
   }
 
@@ -143,7 +138,6 @@
    */
   public ASN1OctetString getAssertionValue()
   {
-
     return assertionValue;
   }
 
@@ -156,7 +150,6 @@
    */
   public void setAssertionValue(ASN1OctetString assertionValue)
   {
-
     this.assertionValue = assertionValue;
   }
 
@@ -169,7 +162,6 @@
    */
   public byte getType()
   {
-
     return OP_TYPE_COMPARE_REQUEST;
   }
 
@@ -182,7 +174,6 @@
    */
   public String getProtocolOpName()
   {
-
     return "Compare Request";
   }
 
@@ -196,7 +187,6 @@
    */
   public ASN1Element encode()
   {
-
     ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
     elements.add(dn);
 
@@ -224,7 +214,6 @@
                                                                    element)
          throws LDAPException
   {
-
     ArrayList<ASN1Element> elements;
     try
     {
@@ -346,7 +335,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("CompareRequest(dn=");
     dn.toString(buffer);
     buffer.append(", attribute=");
@@ -368,7 +356,6 @@
    */
   public void toString(StringBuilder buffer, int indent)
   {
-
     StringBuilder indentBuf = new StringBuilder(indent);
     for (int i=0 ; i < indent; i++)
     {

--
Gitblit v1.10.0