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/controls/AuthorizationIdentityResponseControl.java | 10 ----------
1 files changed, 0 insertions(+), 10 deletions(-)
diff --git a/opends/src/server/org/opends/server/controls/AuthorizationIdentityResponseControl.java b/opends/src/server/org/opends/server/controls/AuthorizationIdentityResponseControl.java
index c2cbfb5..33e2eff 100644
--- a/opends/src/server/org/opends/server/controls/AuthorizationIdentityResponseControl.java
+++ b/opends/src/server/org/opends/server/controls/AuthorizationIdentityResponseControl.java
@@ -191,8 +191,6 @@
*/
private static ASN1OctetString encodeValue(String authorizationID)
{
-
-
return new ASN1OctetString(authorizationID);
}
@@ -209,8 +207,6 @@
*/
private static ASN1OctetString encodeValue(DN authorizationDN)
{
-
-
if (authorizationDN == null)
{
return new ASN1OctetString("dn:");
@@ -240,8 +236,6 @@
Control control)
throws LDAPException
{
-
-
if (! control.hasValue())
{
int msgID = MSGID_AUTHZIDRESP_NO_CONTROL_VALUE;
@@ -265,7 +259,6 @@
*/
public String getAuthorizationID()
{
-
return authorizationID;
}
@@ -280,7 +273,6 @@
*/
public void setAuthorizationID(String authorizationID)
{
-
this.authorizationID = authorizationID;
setValue(encodeValue(authorizationID));
}
@@ -296,7 +288,6 @@
*/
public String toString()
{
-
StringBuilder buffer = new StringBuilder();
toString(buffer);
return buffer.toString();
@@ -312,7 +303,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("AuthorizationIdentityResponseControl(authzID=\"");
buffer.append(authorizationID);
buffer.append("\")");
--
Gitblit v1.10.0