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/ProxiedAuthV1Control.java | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/opends/src/server/org/opends/server/controls/ProxiedAuthV1Control.java b/opends/src/server/org/opends/server/controls/ProxiedAuthV1Control.java
index 55d5a4f..405812a 100644
--- a/opends/src/server/org/opends/server/controls/ProxiedAuthV1Control.java
+++ b/opends/src/server/org/opends/server/controls/ProxiedAuthV1Control.java
@@ -156,7 +156,6 @@
*/
private static ASN1OctetString encodeValue(ASN1OctetString rawAuthorizationDN)
{
-
ensureNotNull(rawAuthorizationDN);
ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(1);
@@ -184,7 +183,6 @@
public static ProxiedAuthV1Control decodeControl(Control control)
throws LDAPException
{
-
ensureNotNull(control);
if (! control.isCritical())
@@ -246,7 +244,6 @@
*/
public ASN1OctetString getRawAuthorizationDN()
{
-
return rawAuthorizationDN;
}
@@ -261,7 +258,6 @@
*/
public void setRawAuthorizationDN(ASN1OctetString rawAuthorizationDN)
{
-
this.rawAuthorizationDN = rawAuthorizationDN;
setValue(encodeValue(rawAuthorizationDN));
@@ -281,7 +277,6 @@
public DN getAuthorizationDN()
throws DirectoryException
{
-
if (authorizationDN == null)
{
authorizationDN = DN.decode(rawAuthorizationDN);
@@ -300,7 +295,6 @@
*/
public void setAuthorizationDN(DN authorizationDN)
{
-
ensureNotNull(authorizationDN);
this.authorizationDN = authorizationDN;
@@ -328,7 +322,6 @@
public Entry getAuthorizationEntry()
throws DirectoryException
{
-
DN authzDN = getAuthorizationDN();
if (authzDN.isNullDN())
{
@@ -411,7 +404,6 @@
*/
public String toString()
{
-
StringBuilder buffer = new StringBuilder();
toString(buffer);
return buffer.toString();
@@ -427,7 +419,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("ProxiedAuthorizationV1Control(authorizationDN=\"");
rawAuthorizationDN.toString(buffer);
buffer.append("\")");
--
Gitblit v1.10.0