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/ldap/LDAPAttribute.java | 12 ------------
1 files changed, 0 insertions(+), 12 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/ldap/LDAPAttribute.java b/opends/src/server/org/opends/server/protocols/ldap/LDAPAttribute.java
index 9354dd2..5a7487e 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/LDAPAttribute.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/LDAPAttribute.java
@@ -78,7 +78,6 @@
*/
public LDAPAttribute(String attributeType)
{
-
this.attributeType = attributeType;
values = new ArrayList<ASN1OctetString>(0);
@@ -94,7 +93,6 @@
*/
public LDAPAttribute(String attributeType, ArrayList<ASN1OctetString> values)
{
-
this.attributeType = attributeType;
if (values == null)
@@ -116,7 +114,6 @@
*/
public LDAPAttribute(Attribute attribute)
{
-
StringBuilder attrName = new StringBuilder(attribute.getName());
for (String o : attribute.getOptions())
{
@@ -149,7 +146,6 @@
*/
public String getAttributeType()
{
-
return attributeType;
}
@@ -162,7 +158,6 @@
*/
public void setAttributeType(String attributeType)
{
-
this.attributeType = attributeType;
}
@@ -176,7 +171,6 @@
*/
public ArrayList<ASN1OctetString> getValues()
{
-
return values;
}
@@ -189,7 +183,6 @@
*/
public ASN1Element encode()
{
-
ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
elements.add(new ASN1OctetString(attributeType));
@@ -227,7 +220,6 @@
public static LDAPAttribute decode(ASN1Element element)
throws LDAPException
{
-
ArrayList<ASN1Element> elements;
try
{
@@ -314,7 +306,6 @@
public Attribute toAttribute()
throws LDAPException
{
-
String baseName;
String lowerBaseName;
int semicolonPos = attributeType.indexOf(';');
@@ -382,7 +373,6 @@
*/
public String toString()
{
-
StringBuilder buffer = new StringBuilder();
toString(buffer);
return buffer.toString();
@@ -397,7 +387,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("LDAPAttribute(type=");
buffer.append(attributeType);
buffer.append(", values={");
@@ -428,7 +417,6 @@
*/
public void toString(StringBuilder buffer, int indent)
{
-
StringBuilder indentBuf = new StringBuilder(indent);
for (int i=0 ; i < indent; i++)
{
--
Gitblit v1.10.0