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

diff --git a/opends/src/server/org/opends/server/protocols/ldap/ModifyDNRequestProtocolOp.java b/opends/src/server/org/opends/server/protocols/ldap/ModifyDNRequestProtocolOp.java
index a21fa09..c85ba23 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/ModifyDNRequestProtocolOp.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/ModifyDNRequestProtocolOp.java
@@ -80,7 +80,6 @@
   public ModifyDNRequestProtocolOp(ASN1OctetString entryDN,
                                    ASN1OctetString newRDN, boolean deleteOldRDN)
   {
-
     this.entryDN      = entryDN;
     this.newRDN       = newRDN;
     this.deleteOldRDN = deleteOldRDN;
@@ -101,7 +100,6 @@
                                    ASN1OctetString newRDN, boolean deleteOldRDN,
                                    ASN1OctetString newSuperior)
   {
-
     this.entryDN      = entryDN;
     this.newRDN       = newRDN;
     this.deleteOldRDN = deleteOldRDN;
@@ -117,7 +115,6 @@
    */
   public ASN1OctetString getEntryDN()
   {
-
     return entryDN;
   }
 
@@ -130,7 +127,6 @@
    */
   public void setEntryDN(ASN1OctetString entryDN)
   {
-
     this.entryDN = entryDN;
   }
 
@@ -143,7 +139,6 @@
    */
   public ASN1OctetString getNewRDN()
   {
-
     return newRDN;
   }
 
@@ -156,7 +151,6 @@
    */
   public void setNewRDN(ASN1OctetString newRDN)
   {
-
     this.newRDN = newRDN;
   }
 
@@ -170,7 +164,6 @@
    */
   public boolean deleteOldRDN()
   {
-
     return deleteOldRDN;
   }
 
@@ -184,7 +177,6 @@
    */
   public void setDeleteOldRDN(boolean deleteOldRDN)
   {
-
     this.deleteOldRDN = deleteOldRDN;
   }
 
@@ -198,7 +190,6 @@
    */
   public ASN1OctetString getNewSuperior()
   {
-
     return newSuperior;
   }
 
@@ -211,7 +202,6 @@
    */
   public void setNewSuperior(ASN1OctetString newSuperior)
   {
-
     this.newSuperior = newSuperior;
   }
 
@@ -224,7 +214,6 @@
    */
   public byte getType()
   {
-
     return OP_TYPE_MODIFY_DN_REQUEST;
   }
 
@@ -237,7 +226,6 @@
    */
   public String getProtocolOpName()
   {
-
     return "Modify DN Request";
   }
 
@@ -251,7 +239,6 @@
    */
   public ASN1Element encode()
   {
-
     ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(4);
     elements.add(entryDN);
     elements.add(newRDN);
@@ -283,7 +270,6 @@
                                                                      element)
          throws LDAPException
   {
-
     ArrayList<ASN1Element> elements;
     try
     {
@@ -404,7 +390,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("ModifyDNRequest(dn=");
     entryDN.toString(buffer);
     buffer.append(", newRDN=");
@@ -433,7 +418,6 @@
    */
   public void toString(StringBuilder buffer, int indent)
   {
-
     StringBuilder indentBuf = new StringBuilder(indent);
     for (int i=0 ; i < indent; i++)
     {

--
Gitblit v1.10.0