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/ASN1Sequence.java | 8 --------
1 files changed, 0 insertions(+), 8 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Sequence.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Sequence.java
index 13cfad7..abe1332 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Sequence.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Sequence.java
@@ -173,7 +173,6 @@
*/
public ArrayList<ASN1Element> elements()
{
-
return elements;
}
@@ -186,7 +185,6 @@
*/
public void setElements(ArrayList<ASN1Element> elements)
{
-
if (elements == null)
{
this.elements.clear();
@@ -212,7 +210,6 @@
public void setValue(byte[] value)
throws ASN1Exception
{
-
if (value == null)
{
int msgID = MSGID_ASN1_SEQUENCE_SET_VALUE_NULL;
@@ -239,7 +236,6 @@
public static ASN1Sequence decodeAsSequence(ASN1Element element)
throws ASN1Exception
{
-
if (element == null)
{
int msgID = MSGID_ASN1_SEQUENCE_DECODE_ELEMENT_NULL;
@@ -268,7 +264,6 @@
public static ASN1Sequence decodeAsSequence(byte[] encodedElement)
throws ASN1Exception
{
-
// First make sure that the array is not null and long enough to contain
// a valid ASN.1 sequence element.
if (encodedElement == null)
@@ -352,7 +347,6 @@
public static ASN1Sequence decodeAsSequence(byte type, byte[] encodedValue)
throws ASN1Exception
{
-
ArrayList<ASN1Element> elements = decodeElements(encodedValue);
return new ASN1Sequence(type, encodedValue, elements);
}
@@ -367,7 +361,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("ASN1Sequence(type=");
buffer.append(byteToHex(getType()));
buffer.append(", values={ ");
@@ -401,7 +394,6 @@
*/
public void toString(StringBuilder buffer, int indent)
{
-
StringBuilder indentBuf = new StringBuilder(indent);
for (int i=0 ; i < indent; i++)
{
--
Gitblit v1.10.0