From 061e0172510debb6cd8920caa717c29a10e1b233 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Thu, 01 Mar 2007 23:48:24 +0000
Subject: [PATCH] Fixed spelling error of a debug method (org.opends.server.loggers.debug.DebugLogger.debugCought should be debugCaught).
---
opends/src/server/org/opends/server/protocols/ldap/LDAPControl.java | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/ldap/LDAPControl.java b/opends/src/server/org/opends/server/protocols/ldap/LDAPControl.java
index 718cd25..588e569 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/LDAPControl.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/LDAPControl.java
@@ -37,7 +37,7 @@
import org.opends.server.types.Control;
import org.opends.server.types.DebugLogLevel;
-import static org.opends.server.loggers.debug.DebugLogger.debugCought;
+import static org.opends.server.loggers.debug.DebugLogger.debugCaught;
import static org.opends.server.loggers.debug.DebugLogger.debugEnabled;
import static org.opends.server.messages.MessageHandler.*;
import static org.opends.server.messages.ProtocolMessages.*;
@@ -205,7 +205,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_LDAP_CONTROL_DECODE_SEQUENCE;
@@ -232,7 +232,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_LDAP_CONTROL_DECODE_OID;
@@ -264,7 +264,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e2);
+ debugCaught(DebugLogLevel.ERROR, e2);
}
int msgID = MSGID_LDAP_CONTROL_DECODE_CRITICALITY;
@@ -283,7 +283,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e2);
+ debugCaught(DebugLogLevel.ERROR, e2);
}
int msgID = MSGID_LDAP_CONTROL_DECODE_VALUE;
@@ -310,7 +310,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_LDAP_CONTROL_DECODE_CRITICALITY;
@@ -327,7 +327,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_LDAP_CONTROL_DECODE_VALUE;
--
Gitblit v1.10.0