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

diff --git a/opends/src/server/org/opends/server/protocols/ldap/ModifyRequestProtocolOp.java b/opends/src/server/org/opends/server/protocols/ldap/ModifyRequestProtocolOp.java
index 8662784..55a3423 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/ModifyRequestProtocolOp.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/ModifyRequestProtocolOp.java
@@ -72,7 +72,6 @@
    */
   public ModifyRequestProtocolOp(ASN1OctetString dn)
   {
-
     this.dn            = dn;
     this.modifications = new ArrayList<LDAPModification>();
   }
@@ -89,7 +88,6 @@
   public ModifyRequestProtocolOp(ASN1OctetString dn,
                                  ArrayList<LDAPModification> modifications)
   {
-
     this.dn = dn;
 
     if (modifications == null)
@@ -111,7 +109,6 @@
    */
   public ASN1OctetString getDN()
   {
-
     return dn;
   }
 
@@ -124,7 +121,6 @@
    */
   public void setDN(ASN1OctetString dn)
   {
-
     this.dn = dn;
   }
 
@@ -138,7 +134,6 @@
    */
   public ArrayList<LDAPModification> getModifications()
   {
-
     return modifications;
   }
 
@@ -151,7 +146,6 @@
    */
   public byte getType()
   {
-
     return OP_TYPE_MODIFY_REQUEST;
   }
 
@@ -164,7 +158,6 @@
    */
   public String getProtocolOpName()
   {
-
     return "Modify Request";
   }
 
@@ -178,7 +171,6 @@
    */
   public ASN1Element encode()
   {
-
     ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
     elements.add(dn);
 
@@ -211,7 +203,6 @@
   public static ModifyRequestProtocolOp decodeModifyRequest(ASN1Element element)
          throws LDAPException
   {
-
     ArrayList<ASN1Element> elements;
     try
     {
@@ -295,7 +286,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("ModifyRequest(dn=");
     dn.toString(buffer);
     buffer.append(", mods={");
@@ -327,7 +317,6 @@
    */
   public void toString(StringBuilder buffer, int indent)
   {
-
     StringBuilder indentBuf = new StringBuilder(indent);
     for (int i=0 ; i < indent; i++)
     {

--
Gitblit v1.10.0