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/CRAMMD5SASLMechanismHandler.java |   16 ----------------
 1 files changed, 0 insertions(+), 16 deletions(-)

diff --git a/opends/src/server/org/opends/server/extensions/CRAMMD5SASLMechanismHandler.java b/opends/src/server/org/opends/server/extensions/CRAMMD5SASLMechanismHandler.java
index 3cc0390..bb6e17b 100644
--- a/opends/src/server/org/opends/server/extensions/CRAMMD5SASLMechanismHandler.java
+++ b/opends/src/server/org/opends/server/extensions/CRAMMD5SASLMechanismHandler.java
@@ -139,8 +139,6 @@
   public void initializeSASLMechanismHandler(ConfigEntry configEntry)
          throws ConfigException, InitializationException
   {
-
-
     this.configEntryDN = configEntry.getDN();
 
 
@@ -230,7 +228,6 @@
   @Override()
   public void finalizeSASLMechanismHandler()
   {
-
     DirectoryServer.deregisterConfigurableComponent(this);
     DirectoryServer.deregisterSASLMechanismHandler(SASL_MECHANISM_CRAM_MD5);
   }
@@ -244,8 +241,6 @@
   @Override()
   public void processSASLBind(BindOperation bindOperation)
   {
-
-
     // The CRAM-MD5 bind process uses two stages.  See if the client provided
     // any credentials.  If not, then we're in the first stage so we'll send the
     // challenge to the client.
@@ -575,8 +570,6 @@
    */
   private byte[] generateDigest(ByteString password, ByteString challenge)
   {
-
-
     // Get the byte arrays backing the password and challenge.
     byte[] p = password.value();
     byte[] c = challenge.value();
@@ -639,7 +632,6 @@
    */
   public DN getConfigurableComponentEntryDN()
   {
-
     return configEntryDN;
   }
 
@@ -655,8 +647,6 @@
    */
   public List<ConfigAttribute> getConfigurationAttributes()
   {
-
-
     LinkedList<ConfigAttribute> attrList = new LinkedList<ConfigAttribute>();
 
     int msgID = MSGID_SASLCRAMMD5_DESCRIPTION_IDENTITY_MAPPER_DN;
@@ -685,8 +675,6 @@
   public boolean hasAcceptableConfiguration(ConfigEntry configEntry,
                                             List<String> unacceptableReasons)
   {
-
-
     // Look at the identity mapper configuration.
     int msgID = MSGID_SASLCRAMMD5_DESCRIPTION_IDENTITY_MAPPER_DN;
     DNConfigAttribute mapperStub =
@@ -756,8 +744,6 @@
   public ConfigChangeResult applyNewConfiguration(ConfigEntry configEntry,
                                                   boolean detailedResults)
   {
-
-
     ResultCode        resultCode          = ResultCode.SUCCESS;
     boolean           adminActionRequired = false;
     ArrayList<String> messages            = new ArrayList<String>();
@@ -843,7 +829,6 @@
   @Override()
   public boolean isPasswordBased(String mechanism)
   {
-
     // This is a password-based mechanism.
     return true;
   }
@@ -856,7 +841,6 @@
   @Override()
   public boolean isSecure(String mechanism)
   {
-
     // This may be considered a secure mechanism.
     return true;
   }

--
Gitblit v1.10.0