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/ldap/SearchResultEntryProtocolOp.java | 15 ---------------
1 files changed, 0 insertions(+), 15 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/SearchResultEntryProtocolOp.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/SearchResultEntryProtocolOp.java
index f3f8b67..79dcfe4 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/SearchResultEntryProtocolOp.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/SearchResultEntryProtocolOp.java
@@ -87,7 +87,6 @@
*/
public SearchResultEntryProtocolOp(DN dn)
{
-
this.dn = dn;
this.attributes = new LinkedList<LDAPAttribute>();
}
@@ -104,7 +103,6 @@
public SearchResultEntryProtocolOp(DN dn,
LinkedList<LDAPAttribute> attributes)
{
-
this.dn = dn;
if (attributes == null)
@@ -128,7 +126,6 @@
*/
public SearchResultEntryProtocolOp(SearchResultEntry searchEntry)
{
-
this.dn = searchEntry.getDN();
attributes = new LinkedList<LDAPAttribute>();
@@ -167,7 +164,6 @@
*/
public DN getDN()
{
-
return dn;
}
@@ -180,7 +176,6 @@
*/
public void setDN(DN dn)
{
-
this.dn = dn;
}
@@ -194,7 +189,6 @@
*/
public LinkedList<LDAPAttribute> getAttributes()
{
-
return attributes;
}
@@ -207,7 +201,6 @@
*/
public byte getType()
{
-
return OP_TYPE_SEARCH_RESULT_ENTRY;
}
@@ -220,7 +213,6 @@
*/
public String getProtocolOpName()
{
-
return "Search Result Entry";
}
@@ -234,7 +226,6 @@
*/
public ASN1Element encode()
{
-
ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
elements.add(new ASN1OctetString(dn.toString()));
@@ -269,7 +260,6 @@
element)
throws LDAPException
{
-
ArrayList<ASN1Element> elements;
try
{
@@ -353,7 +343,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("SearchResultEntry(dn=");
dn.toString(buffer);
buffer.append(", attrs={");
@@ -385,7 +374,6 @@
*/
public void toString(StringBuilder buffer, int indent)
{
-
StringBuilder indentBuf = new StringBuilder(indent);
for (int i=0 ; i < indent; i++)
{
@@ -420,8 +408,6 @@
*/
public void toLDIF(StringBuilder buffer, int wrapColumn)
{
-
-
// Add the DN to the buffer.
String dnString = dn.toString();
int colsRemaining;
@@ -546,7 +532,6 @@
public SearchResultEntry toSearchResultEntry()
throws LDAPException
{
-
HashMap<ObjectClass,String> objectClasses =
new HashMap<ObjectClass,String>();
HashMap<AttributeType,List<Attribute>> userAttributes =
--
Gitblit v1.10.0