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/extensions/PasswordModifyExtendedOperation.java | 28 ++++++++++++++--------------
1 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/PasswordModifyExtendedOperation.java b/opends/src/server/org/opends/server/extensions/PasswordModifyExtendedOperation.java
index 4dd4a71..84d4d80 100644
--- a/opends/src/server/org/opends/server/extensions/PasswordModifyExtendedOperation.java
+++ b/opends/src/server/org/opends/server/extensions/PasswordModifyExtendedOperation.java
@@ -79,7 +79,7 @@
import static org.opends.server.config.ConfigConstants.*;
import static org.opends.server.extensions.ExtensionsConstants.*;
-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 org.opends.server.types.DebugLogLevel;
import static org.opends.server.messages.ExtensionsMessages.*;
@@ -181,7 +181,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_EXTOP_PASSMOD_CANNOT_DETERMINE_ID_MAPPER;
String message = getMessage(msgID, String.valueOf(configEntryDN),
@@ -290,7 +290,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, ae);
+ debugCaught(DebugLogLevel.ERROR, ae);
}
operation.setResultCode(ResultCode.PROTOCOL_ERROR);
@@ -378,7 +378,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, de);
+ debugCaught(DebugLogLevel.ERROR, de);
}
operation.setResultCode(ResultCode.INVALID_DN_SYNTAX);
@@ -437,7 +437,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, de);
+ debugCaught(DebugLogLevel.ERROR, de);
}
if (oldPassword == null)
@@ -484,7 +484,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, de);
+ debugCaught(DebugLogLevel.ERROR, de);
}
operation.setResultCode(DirectoryServer.getServerErrorResultCode());
@@ -800,7 +800,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, de);
+ debugCaught(DebugLogLevel.ERROR, de);
}
if (oldPassword == null)
@@ -932,7 +932,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, de);
+ debugCaught(DebugLogLevel.ERROR, de);
}
if (oldPassword == null)
@@ -1000,7 +1000,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, de);
+ debugCaught(DebugLogLevel.ERROR, de);
}
// We couldn't decode the provided password value, so remove it
@@ -1039,7 +1039,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, de);
+ debugCaught(DebugLogLevel.ERROR, de);
}
// We couldn't decode the provided password value, so remove it
@@ -1246,7 +1246,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
break;
}
@@ -1263,7 +1263,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, de);
+ debugCaught(DebugLogLevel.ERROR, de);
}
operation.setResultCode(de.getResultCode());
@@ -1372,7 +1372,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
msgID = MSGID_EXTOP_PASSMOD_CANNOT_DETERMINE_ID_MAPPER;
@@ -1449,7 +1449,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
resultCode = DirectoryServer.getServerErrorResultCode();
--
Gitblit v1.10.0