From 3e3246e42af6979556dec66ec10ad3d3e009217c 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.

---
 opendj-sdk/opends/src/server/org/opends/server/monitors/VersionMonitorProvider.java |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/monitors/VersionMonitorProvider.java b/opendj-sdk/opends/src/server/org/opends/server/monitors/VersionMonitorProvider.java
index f86df1d..8835382 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/monitors/VersionMonitorProvider.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/monitors/VersionMonitorProvider.java
@@ -87,7 +87,6 @@
   public void initializeMonitorProvider(ConfigEntry configEntry)
          throws ConfigException, InitializationException
   {
-
     // No initialization is required.
   }
 
@@ -101,7 +100,6 @@
    */
   public String getMonitorInstanceName()
   {
-
     return "Version";
   }
 
@@ -118,7 +116,6 @@
    */
   public long getUpdateInterval()
   {
-
     // This monitor does not need to run periodically.
     return 0;
   }
@@ -134,7 +131,6 @@
    */
   public void updateMonitorData()
   {
-
     // This monitor does not need to run periodically.
     return;
   }
@@ -151,8 +147,6 @@
    */
   public ArrayList<Attribute> getMonitorData()
   {
-
-
     ArrayList<Attribute> attrs = new ArrayList<Attribute>(8);
 
     attrs.add(createAttribute("productName", DynamicConstants.PRODUCT_NAME));
@@ -187,7 +181,6 @@
    */
   private Attribute createAttribute(String name, String value)
   {
-
     AttributeType attrType = DirectoryServer.getDefaultAttributeType(name);
 
     ASN1OctetString encodedValue = new ASN1OctetString(value);

--
Gitblit v1.10.0