From 455897cc245b67d929f409a93cfa7106e835cc1f Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Thu, 01 Mar 2007 03:27:06 +0000
Subject: [PATCH] This removes old debug logging framework method calls that are going to be automatically instrumented by AspectJ. Non instrumented debug method calls are updated to use the new debug framework methods. However, the new debug logging framework is not yet active as the Aspects are not weaved in. After this revision, debug logging will be disabled in the server until the new AOP framework is complete.
---
opends/src/server/org/opends/server/tools/PromptTrustManager.java | 13 -------------
1 files changed, 0 insertions(+), 13 deletions(-)
diff --git a/opends/src/server/org/opends/server/tools/PromptTrustManager.java b/opends/src/server/org/opends/server/tools/PromptTrustManager.java
index d04f96e..7357398 100644
--- a/opends/src/server/org/opends/server/tools/PromptTrustManager.java
+++ b/opends/src/server/org/opends/server/tools/PromptTrustManager.java
@@ -37,7 +37,6 @@
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;
-import static org.opends.server.loggers.Debug.*;
import static org.opends.server.messages.MessageHandler.*;
import static org.opends.server.messages.ToolMessages.*;
import static org.opends.server.util.StaticUtils.*;
@@ -56,11 +55,6 @@
public class PromptTrustManager
implements X509TrustManager
{
- /**
- * The fully-qualified name of this class for debugging purposes.
- */
- private static final String CLASS_NAME =
- "org.opends.server.tools.PromptTrustManager";
@@ -75,7 +69,6 @@
*/
private PromptTrustManager()
{
- assert debugConstructor(CLASS_NAME);
// No implementation is required.
}
@@ -93,7 +86,6 @@
*/
public static TrustManager[] getTrustManagers()
{
- assert debugEnter(CLASS_NAME, "getTrustManagers");
return trustManagerArray;
}
@@ -114,8 +106,6 @@
public void checkClientTrusted(X509Certificate[] chain, String authType)
throws CertificateException
{
- assert debugEnter(CLASS_NAME, "checkClientTrusted",
- String.valueOf(chain), String.valueOf(authType));
int msgID = MSGID_PROMPTTM_REJECTING_CLIENT_CERT;
String message = getMessage(msgID);
@@ -137,8 +127,6 @@
public void checkServerTrusted(X509Certificate[] chain, String authType)
throws CertificateException
{
- assert debugEnter(CLASS_NAME, "checkServerTrusted",
- String.valueOf(chain), String.valueOf(authType));
if ((chain == null) || (chain.length == 0))
{
@@ -209,7 +197,6 @@
*/
public X509Certificate[] getAcceptedIssuers()
{
- assert debugEnter(CLASS_NAME, "getAcceptedIssuers");
return new X509Certificate[0];
}
--
Gitblit v1.10.0