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

diff --git a/opends/src/server/org/opends/server/protocols/ldap/DeleteRequestProtocolOp.java b/opends/src/server/org/opends/server/protocols/ldap/DeleteRequestProtocolOp.java
index 8e9bac4..0c8204c 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/DeleteRequestProtocolOp.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/DeleteRequestProtocolOp.java
@@ -63,7 +63,6 @@
    */
   public DeleteRequestProtocolOp(ASN1OctetString dn)
   {
-
     this.dn = dn;
   }
 
@@ -76,7 +75,6 @@
    */
   public ASN1OctetString getDN()
   {
-
     return dn;
   }
 
@@ -89,7 +87,6 @@
    */
   public void setDN(ASN1OctetString dn)
   {
-
     this.dn = dn;
   }
 
@@ -102,7 +99,6 @@
    */
   public byte getType()
   {
-
     return OP_TYPE_DELETE_REQUEST;
   }
 
@@ -115,7 +111,6 @@
    */
   public String getProtocolOpName()
   {
-
     return "Delete Request";
   }
 
@@ -129,7 +124,6 @@
    */
   public ASN1Element encode()
   {
-
     dn.setType(OP_TYPE_DELETE_REQUEST);
     return dn;
   }
@@ -149,7 +143,6 @@
   public static DeleteRequestProtocolOp decodeDeleteRequest(ASN1Element element)
          throws LDAPException
   {
-
     try
     {
       return new DeleteRequestProtocolOp(element.decodeAsOctetString());
@@ -177,7 +170,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("DeleteRequest(dn=");
     dn.toString(buffer);
     buffer.append(")");
@@ -195,7 +187,6 @@
    */
   public void toString(StringBuilder buffer, int indent)
   {
-
     StringBuilder indentBuf = new StringBuilder(indent);
     for (int i=0 ; i < indent; i++)
     {

--
Gitblit v1.10.0