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

diff --git a/opends/src/server/org/opends/server/protocols/asn1/ASN1Null.java b/opends/src/server/org/opends/server/protocols/asn1/ASN1Null.java
index fe9f005..6a695b4 100644
--- a/opends/src/server/org/opends/server/protocols/asn1/ASN1Null.java
+++ b/opends/src/server/org/opends/server/protocols/asn1/ASN1Null.java
@@ -90,7 +90,6 @@
   public void setValue(byte[] value)
          throws ASN1Exception
   {
-
     if ((value != null) && (value.length != 0))
     {
       int    msgID   = MSGID_ASN1_NULL_SET_VALUE_INVALID_LENGTH;
@@ -114,7 +113,6 @@
   public static ASN1Null decodeAsNull(ASN1Element element)
          throws ASN1Exception
   {
-
     if (element == null)
     {
       int    msgID   = MSGID_ASN1_NULL_DECODE_ELEMENT_NULL;
@@ -148,7 +146,6 @@
   public static ASN1Null decodeAsNull(byte[] encodedElement)
          throws ASN1Exception
   {
-
     // First make sure that the array is not null and long enough to contain
     // a valid ASN.1 null element.
     if (encodedElement == null)
@@ -230,7 +227,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("ASN1Null(type=");
     buffer.append(byteToHex(getType()));
     buffer.append(")");
@@ -249,7 +245,6 @@
    */
   public void toString(StringBuilder buffer, int indent)
   {
-
     StringBuilder indentBuf = new StringBuilder(indent);
     for (int i=0 ; i < indent; i++)
     {

--
Gitblit v1.10.0