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/SearchResultReferenceProtocolOp.java | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/ldap/SearchResultReferenceProtocolOp.java b/opends/src/server/org/opends/server/protocols/ldap/SearchResultReferenceProtocolOp.java
index d73392c..0a952a0 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/SearchResultReferenceProtocolOp.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/SearchResultReferenceProtocolOp.java
@@ -72,7 +72,6 @@
*/
public SearchResultReferenceProtocolOp(List<String> referralURLs)
{
-
if (referralURLs == null)
{
this.referralURLs = new ArrayList<String>();
@@ -94,7 +93,6 @@
*/
public SearchResultReferenceProtocolOp(SearchResultReference searchReference)
{
-
referralURLs = searchReference.getReferralURLs();
if (referralURLs == null)
{
@@ -113,7 +111,6 @@
*/
public List<String> getReferralURLs()
{
-
return referralURLs;
}
@@ -126,7 +123,6 @@
*/
public byte getType()
{
-
return OP_TYPE_SEARCH_RESULT_REFERENCE;
}
@@ -139,7 +135,6 @@
*/
public String getProtocolOpName()
{
-
return "Search Result Reference";
}
@@ -153,7 +148,6 @@
*/
public ASN1Element encode()
{
-
ArrayList<ASN1Element> elements =
new ArrayList<ASN1Element>(referralURLs.size());
for (String url : referralURLs)
@@ -182,7 +176,6 @@
decodeSearchReference(ASN1Element element)
throws LDAPException
{
-
ArrayList<ASN1Element> elements;
try
{
@@ -235,7 +228,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("SearchReference(referralURLs={");
if (! referralURLs.isEmpty())
@@ -265,7 +257,6 @@
*/
public void toString(StringBuilder buffer, int indent)
{
-
StringBuilder indentBuf = new StringBuilder(indent);
for (int i=0 ; i < indent; i++)
{
--
Gitblit v1.10.0