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

diff --git a/opends/src/server/org/opends/server/protocols/asn1/ASN1Reader.java b/opends/src/server/org/opends/server/protocols/asn1/ASN1Reader.java
index 97ec560..e86db95 100644
--- a/opends/src/server/org/opends/server/protocols/asn1/ASN1Reader.java
+++ b/opends/src/server/org/opends/server/protocols/asn1/ASN1Reader.java
@@ -72,7 +72,6 @@
   public ASN1Reader(Socket socket)
          throws IOException
   {
-
     this.socket = socket;
     inputStream = socket.getInputStream();
 
@@ -90,7 +89,6 @@
    */
   public ASN1Reader(InputStream inputStream)
   {
-
     this.inputStream = inputStream;
     socket           = null;
     maxElementSize   = -1;
@@ -107,7 +105,6 @@
    */
   public int getMaxElementSize()
   {
-
     return maxElementSize;
   }
 
@@ -122,7 +119,6 @@
    */
   public void setMaxElementSize(int maxElementSize)
   {
-
     this.maxElementSize = maxElementSize;
   }
 
@@ -144,7 +140,6 @@
   public int getIOTimeout()
          throws IOException
   {
-
     if (socket == null)
     {
       return -1;
@@ -173,7 +168,6 @@
   public void setIOTimeout(int ioTimeout)
          throws IOException
   {
-
     if (socket == null)
     {
       return;
@@ -288,7 +282,6 @@
    */
   public void close()
   {
-
     try
     {
       inputStream.close();

--
Gitblit v1.10.0