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/monitors/SystemInfoMonitorProvider.java |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/opends/src/server/org/opends/server/monitors/SystemInfoMonitorProvider.java b/opends/src/server/org/opends/server/monitors/SystemInfoMonitorProvider.java
index f2865cf..e4df522 100644
--- a/opends/src/server/org/opends/server/monitors/SystemInfoMonitorProvider.java
+++ b/opends/src/server/org/opends/server/monitors/SystemInfoMonitorProvider.java
@@ -88,7 +88,6 @@
   public void initializeMonitorProvider(ConfigEntry configEntry)
          throws ConfigException, InitializationException
   {
-
     // No initialization is required.
   }
 
@@ -102,7 +101,6 @@
    */
   public String getMonitorInstanceName()
   {
-
     return "System Information";
   }
 
@@ -119,7 +117,6 @@
    */
   public long getUpdateInterval()
   {
-
     // This monitor does not need to run periodically.
     return 0;
   }
@@ -135,7 +132,6 @@
    */
   public void updateMonitorData()
   {
-
     // This monitor does not need to run periodically.
     return;
   }
@@ -152,8 +148,6 @@
    */
   public ArrayList<Attribute> getMonitorData()
   {
-
-
     ArrayList<Attribute> attrs = new ArrayList<Attribute>(12);
 
     attrs.add(createAttribute("javaVersion",
@@ -216,7 +210,6 @@
    */
   private Attribute createAttribute(String name, String value)
   {
-
     AttributeType attrType = DirectoryServer.getDefaultAttributeType(name);
 
     ASN1OctetString encodedValue = new ASN1OctetString(value);

--
Gitblit v1.10.0