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/extensions/PlainSASLMechanismHandler.java | 14 --------------
1 files changed, 0 insertions(+), 14 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/PlainSASLMechanismHandler.java b/opends/src/server/org/opends/server/extensions/PlainSASLMechanismHandler.java
index 8f92a6f..c3b890e 100644
--- a/opends/src/server/org/opends/server/extensions/PlainSASLMechanismHandler.java
+++ b/opends/src/server/org/opends/server/extensions/PlainSASLMechanismHandler.java
@@ -116,8 +116,6 @@
public void initializeSASLMechanismHandler(ConfigEntry configEntry)
throws ConfigException, InitializationException
{
-
-
this.configEntryDN = configEntry.getDN();
@@ -179,7 +177,6 @@
@Override()
public void finalizeSASLMechanismHandler()
{
-
DirectoryServer.deregisterConfigurableComponent(this);
DirectoryServer.deregisterSASLMechanismHandler(SASL_MECHANISM_PLAIN);
}
@@ -193,8 +190,6 @@
@Override()
public void processSASLBind(BindOperation bindOperation)
{
-
-
// Get the SASL credentials provided by the user and decode them.
String authzID = null;
String authcID = null;
@@ -614,7 +609,6 @@
*/
public DN getConfigurableComponentEntryDN()
{
-
return configEntryDN;
}
@@ -630,8 +624,6 @@
*/
public List<ConfigAttribute> getConfigurationAttributes()
{
-
-
LinkedList<ConfigAttribute> attrList = new LinkedList<ConfigAttribute>();
int msgID = MSGID_SASLPLAIN_DESCRIPTION_IDENTITY_MAPPER_DN;
@@ -660,8 +652,6 @@
public boolean hasAcceptableConfiguration(ConfigEntry configEntry,
List<String> unacceptableReasons)
{
-
-
// Look at the identity mapper configuration.
int msgID = MSGID_SASLPLAIN_DESCRIPTION_IDENTITY_MAPPER_DN;
DNConfigAttribute mapperStub =
@@ -731,8 +721,6 @@
public ConfigChangeResult applyNewConfiguration(ConfigEntry configEntry,
boolean detailedResults)
{
-
-
ResultCode resultCode = ResultCode.SUCCESS;
boolean adminActionRequired = false;
ArrayList<String> messages = new ArrayList<String>();
@@ -818,7 +806,6 @@
@Override()
public boolean isPasswordBased(String mechanism)
{
-
// This is a password-based mechanism.
return true;
}
@@ -831,7 +818,6 @@
@Override()
public boolean isSecure(String mechanism)
{
-
// This is not a secure mechanism.
return false;
}
--
Gitblit v1.10.0