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/BlindTrustManagerProvider.java | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/BlindTrustManagerProvider.java b/opends/src/server/org/opends/server/extensions/BlindTrustManagerProvider.java
index 2840515..16ced44 100644
--- a/opends/src/server/org/opends/server/extensions/BlindTrustManagerProvider.java
+++ b/opends/src/server/org/opends/server/extensions/BlindTrustManagerProvider.java
@@ -63,7 +63,6 @@
*/
public BlindTrustManagerProvider()
{
-
// No implementation is required.
}
@@ -87,7 +86,6 @@
public void initializeTrustManagerProvider(ConfigEntry configEntry)
throws ConfigException, InitializationException
{
-
// No implementation is required.
}
@@ -99,7 +97,6 @@
*/
public void finalizeTrustManagerProvider()
{
-
// No implementation is required.
}
@@ -118,7 +115,6 @@
public TrustManager[] getTrustManagers()
throws DirectoryException
{
-
return new TrustManager[] { this };
}
@@ -133,7 +129,6 @@
*/
public void checkClientTrusted(X509Certificate[] chain, String authType)
{
-
// As long as we don't throw an exception, then the client certificate will
// be considered trusted.
}
@@ -149,7 +144,6 @@
*/
public void checkServerTrusted(X509Certificate[] chain, String authType)
{
-
// As long as we don't throw an exception, then the server certificate will
// be considered trusted.
}
@@ -165,7 +159,6 @@
*/
public X509Certificate[] getAcceptedIssuers()
{
-
return new X509Certificate[0];
}
}
--
Gitblit v1.10.0