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

diff --git a/opends/src/server/org/opends/server/protocols/ldap/ExtendedRequestProtocolOp.java b/opends/src/server/org/opends/server/protocols/ldap/ExtendedRequestProtocolOp.java
index e325b79..70da1c7 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/ExtendedRequestProtocolOp.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/ExtendedRequestProtocolOp.java
@@ -71,7 +71,6 @@
    */
   public ExtendedRequestProtocolOp(String oid)
   {
-
     this.oid   = oid;
     this.value = null;
   }
@@ -87,7 +86,6 @@
    */
   public ExtendedRequestProtocolOp(String oid, ASN1OctetString value)
   {
-
     this.oid   = oid;
     this.value = value;
   }
@@ -101,7 +99,6 @@
    */
   public String getOID()
   {
-
     return oid;
   }
 
@@ -114,7 +111,6 @@
    */
   public void setOID(String oid)
   {
-
     this.oid = oid;
   }
 
@@ -128,7 +124,6 @@
    */
   public ASN1OctetString getValue()
   {
-
     return value;
   }
 
@@ -141,7 +136,6 @@
    */
   public void setValue(ASN1OctetString value)
   {
-
     this.value = value;
   }
 
@@ -154,7 +148,6 @@
    */
   public byte getType()
   {
-
     return OP_TYPE_EXTENDED_REQUEST;
   }
 
@@ -167,7 +160,6 @@
    */
   public String getProtocolOpName()
   {
-
     return "Extended Request";
   }
 
@@ -181,7 +173,6 @@
    */
   public ASN1Element encode()
   {
-
     ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
     elements.add(new ASN1OctetString(TYPE_EXTENDED_REQUEST_OID, oid));
 
@@ -211,7 +202,6 @@
                                                                      element)
          throws LDAPException
   {
-
     ArrayList<ASN1Element> elements;
     try
     {
@@ -295,7 +285,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("ExtendedRequest(oid=");
     buffer.append(oid);
 
@@ -320,7 +309,6 @@
    */
   public void toString(StringBuilder buffer, int indent)
   {
-
     StringBuilder indentBuf = new StringBuilder(indent);
     for (int i=0 ; i < indent; i++)
     {

--
Gitblit v1.10.0