From 3e3246e42af6979556dec66ec10ad3d3e009217c 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.

---
 opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Integer.java |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Integer.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Integer.java
index 4c06dfa..61a8746 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Integer.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Integer.java
@@ -118,7 +118,6 @@
    */
   public int intValue()
   {
-
     return intValue;
   }
 
@@ -131,7 +130,6 @@
    */
   public void setValue(int intValue)
   {
-
     this.intValue = intValue;
     setValueInternal(encodeValue(intValue));
   }
@@ -149,7 +147,6 @@
   public void setValue(byte[] value)
          throws ASN1Exception
   {
-
     if (value == null)
     {
       int    msgID   = MSGID_ASN1_INTEGER_SET_VALUE_NULL;
@@ -188,7 +185,6 @@
   public static ASN1Integer decodeAsInteger(ASN1Element element)
          throws ASN1Exception
   {
-
     if (element == null)
     {
       int    msgID   = MSGID_ASN1_INTEGER_DECODE_ELEMENT_NULL;
@@ -229,7 +225,6 @@
   public static ASN1Integer decodeAsInteger(byte[] encodedElement)
          throws ASN1Exception
   {
-
     // First make sure that the array is not null and long enough to contain
     // a valid ASN.1 integer element.
     if (encodedElement == null)
@@ -320,7 +315,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("ASN1Integer(type=");
     buffer.append(byteToHex(getType()));
     buffer.append(", value=");
@@ -341,7 +335,6 @@
    */
   public void toString(StringBuilder buffer, int indent)
   {
-
     StringBuilder indentBuf = new StringBuilder(indent);
     for (int i=0 ; i < indent; i++)
     {

--
Gitblit v1.10.0