From 5606f48359e5d381e80bc7bf8f42bcbdf2e19ec0 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Wed, 11 Jul 2007 05:32:57 +0000
Subject: [PATCH] Make a few generic fixes to various configuration classes, including:

---
 opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java b/opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java
index 5496d47..af4fa00 100644
--- a/opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java
+++ b/opends/src/server/org/opends/server/plugins/profiler/ProfilerPlugin.java
@@ -265,13 +265,13 @@
                       List<String> unacceptableReasons)
   {
     boolean configAcceptable = true;
-    DN configEntryDN = configuration.dn();
+    DN cfgEntryDN = configuration.dn();
 
     // Make sure that the plugin is only registered as a startup plugin.
     if (configuration.getPluginType().isEmpty())
     {
       int    msgID   = MSGID_PLUGIN_PROFILER_NO_PLUGIN_TYPES;
-      String message = getMessage(msgID, String.valueOf(configEntryDN));
+      String message = getMessage(msgID, String.valueOf(cfgEntryDN));
       unacceptableReasons.add(message);
       configAcceptable = false;
     }
@@ -282,7 +282,7 @@
         if (t != PluginCfgDefn.PluginType.STARTUP)
         {
           int    msgID   = MSGID_PLUGIN_PROFILER_INVALID_PLUGIN_TYPE;
-          String message = getMessage(msgID, String.valueOf(configEntryDN),
+          String message = getMessage(msgID, String.valueOf(cfgEntryDN),
                                       String.valueOf(t));
           unacceptableReasons.add(message);
           configAcceptable = false;
@@ -299,7 +299,7 @@
       int msgID = MSGID_PLUGIN_PROFILER_INVALID_PROFILE_DIR;
       unacceptableReasons.add(getMessage(msgID,
                                          profileDirectory.getAbsolutePath(),
-                                         String.valueOf(configEntryDN)));
+                                         String.valueOf(cfgEntryDN)));
       configAcceptable = false;
     }
 

--
Gitblit v1.10.0