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/ASN1Boolean.java | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/asn1/ASN1Boolean.java b/opends/src/server/org/opends/server/protocols/asn1/ASN1Boolean.java
index ba2b28a..6444f6c 100644
--- a/opends/src/server/org/opends/server/protocols/asn1/ASN1Boolean.java
+++ b/opends/src/server/org/opends/server/protocols/asn1/ASN1Boolean.java
@@ -118,7 +118,6 @@
*/
public boolean booleanValue()
{
-
return booleanValue;
}
@@ -131,7 +130,6 @@
*/
public void setValue(boolean booleanValue)
{
-
this.booleanValue = booleanValue;
setValueInternal(encodeValue(booleanValue));
}
@@ -149,7 +147,6 @@
public void setValue(byte[] value)
throws ASN1Exception
{
-
if (value == null)
{
int msgID = MSGID_ASN1_BOOLEAN_SET_VALUE_NULL;
@@ -183,7 +180,6 @@
public static ASN1Boolean decodeAsBoolean(ASN1Element element)
throws ASN1Exception
{
-
if (element == null)
{
int msgID = MSGID_ASN1_BOOLEAN_DECODE_ELEMENT_NULL;
@@ -219,7 +215,6 @@
public static ASN1Boolean decodeAsBoolean(byte[] encodedElement)
throws ASN1Exception
{
-
// First make sure that the array is not null and long enough to contain
// a valid ASN.1 Boolean element.
if (encodedElement == null)
@@ -303,7 +298,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("ASN1Boolean(type=");
buffer.append(byteToHex(getType()));
buffer.append(", value=");
@@ -324,7 +318,6 @@
*/
public void toString(StringBuilder buffer, int indent)
{
-
StringBuilder indentBuf = new StringBuilder(indent);
for (int i=0 ; i < indent; i++)
{
--
Gitblit v1.10.0