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/ASN1OctetString.java | 10 ----------
1 files changed, 0 insertions(+), 10 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/asn1/ASN1OctetString.java b/opends/src/server/org/opends/server/protocols/asn1/ASN1OctetString.java
index 35af76e..0154b4a 100644
--- a/opends/src/server/org/opends/server/protocols/asn1/ASN1OctetString.java
+++ b/opends/src/server/org/opends/server/protocols/asn1/ASN1OctetString.java
@@ -181,7 +181,6 @@
*/
public String stringValue()
{
-
if (stringValue == null)
{
/*
@@ -229,7 +228,6 @@
*/
public void stringValue(StringBuilder buffer)
{
-
if (stringValue != null)
{
buffer.append(stringValue);
@@ -277,7 +275,6 @@
*/
public void setValue(String stringValue)
{
-
if (stringValue == null)
{
this.stringValue = null;
@@ -299,7 +296,6 @@
*/
public void setValue(byte[] value)
{
-
if (value == null)
{
setValueInternal(NO_VALUE);
@@ -327,7 +323,6 @@
public static ASN1OctetString decodeAsOctetString(ASN1Element element)
throws ASN1Exception
{
-
if (element == null)
{
int msgID = MSGID_ASN1_OCTET_STRING_DECODE_ELEMENT_NULL;
@@ -354,7 +349,6 @@
public static ASN1OctetString decodeAsOctetString(byte[] encodedElement)
throws ASN1Exception
{
-
// First make sure that the array is not null and long enough to contain
// a valid ASN.1 element.
if (encodedElement == null)
@@ -428,7 +422,6 @@
*/
public ASN1OctetString duplicate()
{
-
byte[] value = value();
int length = value.length;
@@ -448,7 +441,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append(stringValue());
}
@@ -465,7 +457,6 @@
*/
public void toString(StringBuilder buffer, int indent)
{
-
StringBuilder indentBuf = new StringBuilder(indent);
for (int i=0 ; i < indent; i++)
{
@@ -500,7 +491,6 @@
*/
public ASN1OctetString toASN1OctetString()
{
-
return this;
}
}
--
Gitblit v1.10.0