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/core/MonitorConfigManager.java | 15 ---------------
1 files changed, 0 insertions(+), 15 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/MonitorConfigManager.java b/opends/src/server/org/opends/server/core/MonitorConfigManager.java
index 4922a56..32ce2e3 100644
--- a/opends/src/server/org/opends/server/core/MonitorConfigManager.java
+++ b/opends/src/server/org/opends/server/core/MonitorConfigManager.java
@@ -89,7 +89,6 @@
*/
public MonitorConfigManager()
{
-
configHandler = DirectoryServer.getConfigHandler();
monitorProviders = new ConcurrentHashMap<DN,MonitorProvider>();
@@ -111,8 +110,6 @@
public void initializeMonitorProviders()
throws ConfigException, InitializationException
{
-
-
// First, get the monitor configuration base entry.
ConfigEntry monitorBaseEntry;
try
@@ -228,8 +225,6 @@
public boolean configChangeIsAcceptable(ConfigEntry configEntry,
StringBuilder unacceptableReason)
{
-
-
// Make sure that the entry has an appropriate objectclass for a monitor
// provider.
if (! configEntry.hasObjectClass(OC_MONITOR_PROVIDER))
@@ -366,8 +361,6 @@
*/
public ConfigChangeResult applyConfigurationChange(ConfigEntry configEntry)
{
-
-
DN configEntryDN = configEntry.getDN();
ResultCode resultCode = ResultCode.SUCCESS;
boolean adminActionRequired = false;
@@ -590,8 +583,6 @@
public boolean configAddIsAcceptable(ConfigEntry configEntry,
StringBuilder unacceptableReason)
{
-
-
// Make sure that no entry already exists with the specified DN.
DN configEntryDN = configEntry.getDN();
if (monitorProviders.containsKey(configEntryDN))
@@ -769,8 +760,6 @@
*/
public ConfigChangeResult applyConfigurationAdd(ConfigEntry configEntry)
{
-
-
DN configEntryDN = configEntry.getDN();
ResultCode resultCode = ResultCode.SUCCESS;
boolean adminActionRequired = false;
@@ -933,8 +922,6 @@
public boolean configDeleteIsAcceptable(ConfigEntry configEntry,
StringBuilder unacceptableReason)
{
-
-
// A delete should always be acceptable, so just return true.
return true;
}
@@ -951,8 +938,6 @@
*/
public ConfigChangeResult applyConfigurationDelete(ConfigEntry configEntry)
{
-
-
DN configEntryDN = configEntry.getDN();
ResultCode resultCode = ResultCode.SUCCESS;
boolean adminActionRequired = false;
--
Gitblit v1.10.0