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/PasswordPolicyResponseControl.java | 8 --------
1 files changed, 0 insertions(+), 8 deletions(-)
diff --git a/opends/src/server/org/opends/server/controls/PasswordPolicyResponseControl.java b/opends/src/server/org/opends/server/controls/PasswordPolicyResponseControl.java
index b73500e..6e8fed5 100644
--- a/opends/src/server/org/opends/server/controls/PasswordPolicyResponseControl.java
+++ b/opends/src/server/org/opends/server/controls/PasswordPolicyResponseControl.java
@@ -215,7 +215,6 @@
int warningValue,
PasswordPolicyErrorType errorType)
{
-
ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
if (warningType != null)
@@ -254,8 +253,6 @@
public static PasswordPolicyResponseControl decodeControl(Control control)
throws LDAPException
{
-
-
ASN1OctetString controlValue = control.getValue();
if (controlValue == null)
{
@@ -356,7 +353,6 @@
*/
public PasswordPolicyWarningType getWarningType()
{
-
return warningType;
}
@@ -370,7 +366,6 @@
*/
public int getWarningValue()
{
-
return warningValue;
}
@@ -384,7 +379,6 @@
*/
public PasswordPolicyErrorType getErrorType()
{
-
return errorType;
}
@@ -397,7 +391,6 @@
*/
public String toString()
{
-
StringBuilder buffer = new StringBuilder();
toString(buffer);
return buffer.toString();
@@ -413,7 +406,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("PasswordPolicyResponseControl(");
if (warningType != null)
--
Gitblit v1.10.0