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/ASN1Long.java | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/asn1/ASN1Long.java b/opends/src/server/org/opends/server/protocols/asn1/ASN1Long.java
index 0dd09f9..fbabff7 100644
--- a/opends/src/server/org/opends/server/protocols/asn1/ASN1Long.java
+++ b/opends/src/server/org/opends/server/protocols/asn1/ASN1Long.java
@@ -131,7 +131,6 @@
*/
public long longValue()
{
-
return longValue;
}
@@ -144,7 +143,6 @@
*/
public void setValue(long longValue)
{
-
this.longValue = longValue;
setValueInternal(encodeLongValue(longValue));
}
@@ -162,7 +160,6 @@
public void setValue(byte[] value)
throws ASN1Exception
{
-
if (value == null)
{
int msgID = MSGID_ASN1_INTEGER_SET_VALUE_NULL;
@@ -201,7 +198,6 @@
public static ASN1Long decodeAsLong(ASN1Element element)
throws ASN1Exception
{
-
if (element == null)
{
int msgID = MSGID_ASN1_INTEGER_DECODE_ELEMENT_NULL;
@@ -241,7 +237,6 @@
public static ASN1Long decodeAsLong(byte[] encodedElement)
throws ASN1Exception
{
-
// First make sure that the array is not null and long enough to contain
// a valid ASN.1 long element.
if (encodedElement == null)
@@ -332,7 +327,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("ASN1Long(type=");
buffer.append(byteToHex(getType()));
buffer.append(", value=");
@@ -353,7 +347,6 @@
*/
public void toString(StringBuilder buffer, int indent)
{
-
StringBuilder indentBuf = new StringBuilder(indent);
for (int i=0 ; i < indent; i++)
{
--
Gitblit v1.10.0