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/ASN1Writer.java | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/asn1/ASN1Writer.java b/opends/src/server/org/opends/server/protocols/asn1/ASN1Writer.java
index efe9576..038b235 100644
--- a/opends/src/server/org/opends/server/protocols/asn1/ASN1Writer.java
+++ b/opends/src/server/org/opends/server/protocols/asn1/ASN1Writer.java
@@ -66,7 +66,6 @@
public ASN1Writer(Socket socket)
throws IOException
{
-
this.socket = socket;
outputStream = socket.getOutputStream();
}
@@ -81,7 +80,6 @@
*/
public ASN1Writer(OutputStream outputStream)
{
-
this.outputStream = outputStream;
socket = null;
}
@@ -102,7 +100,6 @@
public int writeElement(ASN1Element element)
throws IOException
{
-
byte[] elementBytes = element.encode();
outputStream.write(elementBytes);
outputStream.flush();
--
Gitblit v1.10.0