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

diff --git a/opends/src/server/org/opends/server/protocols/ldap/AddRequestProtocolOp.java b/opends/src/server/org/opends/server/protocols/ldap/AddRequestProtocolOp.java
index d0201c2..7b8fa6f 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/AddRequestProtocolOp.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/AddRequestProtocolOp.java
@@ -74,7 +74,6 @@
    */
   public AddRequestProtocolOp(ASN1OctetString dn)
   {
-
     this.dn         = dn;
     this.attributes = new ArrayList<LDAPAttribute>();
   }
@@ -91,7 +90,6 @@
   public AddRequestProtocolOp(ASN1OctetString dn,
                               ArrayList<LDAPAttribute> attributes)
   {
-
     this.dn = dn;
 
     if (attributes == null)
@@ -113,7 +111,6 @@
    */
   public ASN1OctetString getDN()
   {
-
     return dn;
   }
 
@@ -126,7 +123,6 @@
    */
   public void setDN(ASN1OctetString dn)
   {
-
     this.dn = dn;
   }
 
@@ -140,7 +136,6 @@
    */
   public List<LDAPAttribute> getAttributes()
   {
-
     return attributes;
   }
 
@@ -153,7 +148,6 @@
    */
   public byte getType()
   {
-
     return OP_TYPE_ADD_REQUEST;
   }
 
@@ -166,7 +160,6 @@
    */
   public String getProtocolOpName()
   {
-
     return "Add Request";
   }
 
@@ -180,7 +173,6 @@
    */
   public ASN1Element encode()
   {
-
     ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
     elements.add(dn);
 
@@ -212,7 +204,6 @@
   public static AddRequestProtocolOp decodeAddRequest(ASN1Element element)
          throws LDAPException
   {
-
     ArrayList<ASN1Element> elements;
     try
     {
@@ -296,7 +287,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("AddRequest(dn=");
     dn.toString(buffer);
     buffer.append(", attrs={");
@@ -328,7 +318,6 @@
    */
   public void toString(StringBuilder buffer, int indent)
   {
-
     StringBuilder indentBuf = new StringBuilder(indent);
     for (int i=0 ; i < indent; i++)
     {
@@ -363,8 +352,6 @@
    */
   public void toLDIF(StringBuilder buffer, int wrapColumn)
   {
-
-
     // Add the DN to the buffer.
     String dnString;
     int    colsRemaining;

--
Gitblit v1.10.0