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

diff --git a/opends/src/server/org/opends/server/api/Backend.java b/opends/src/server/org/opends/server/api/Backend.java
index 2cda421..75640d6 100644
--- a/opends/src/server/org/opends/server/api/Backend.java
+++ b/opends/src/server/org/opends/server/api/Backend.java
@@ -100,7 +100,6 @@
    */
   protected Backend()
   {
-
     backendID           = null;
     parentBackend       = null;
     subordinateBackends = new Backend[0];
@@ -214,7 +213,6 @@
   public boolean entryExists(DN entryDN)
          throws DirectoryException
   {
-
     Lock lock = null;
     for (int i=0; i < 3; i++)
     {
@@ -402,7 +400,6 @@
    */
   public final boolean supportsControl(String controlOID)
   {
-
     Set<String> supportedControls = getSupportedControls();
     return ((supportedControls != null) &&
             supportedControls.contains(controlOID));
@@ -432,7 +429,6 @@
    */
   public final boolean supportsFeature(String featureOID)
   {
-
     Set<String> supportedFeatures = getSupportedFeatures();
     return ((supportedFeatures != null) &&
             supportedFeatures.contains(featureOID));
@@ -621,7 +617,6 @@
    */
   public String getBackendID()
   {
-
     return backendID;
   }
 
@@ -634,7 +629,6 @@
    */
   public void setBackendID(String backendID)
   {
-
     this.backendID = backendID;
   }
 
@@ -648,7 +642,6 @@
    */
   public boolean isPrivateBackend()
   {
-
     return isPrivateBackend;
   }
 
@@ -674,7 +667,6 @@
    */
   public WritabilityMode getWritabilityMode()
   {
-
     return writabilityMode;
   }
 
@@ -687,7 +679,6 @@
    */
   public void setWritabilityMode(WritabilityMode writabilityMode)
   {
-
     if (writabilityMode == null)
     {
       this.writabilityMode = WritabilityMode.ENABLED;
@@ -709,7 +700,6 @@
    */
   public BackendMonitor getBackendMonitor()
   {
-
     return backendMonitor;
   }
 
@@ -722,7 +712,6 @@
    */
   public void setBackendMonitor(BackendMonitor backendMonitor)
   {
-
     this.backendMonitor = backendMonitor;
   }
 
@@ -747,7 +736,6 @@
    */
   public Backend getParentBackend()
   {
-
     return parentBackend;
   }
 
@@ -760,7 +748,6 @@
    */
   public void setParentBackend(Backend parentBackend)
   {
-
     synchronized (this)
     {
       this.parentBackend = parentBackend;
@@ -777,7 +764,6 @@
    */
   public Backend[] getSubordinateBackends()
   {
-
     return subordinateBackends;
   }
 
@@ -791,7 +777,6 @@
    */
   public void setSubordinateBackends(Backend[] subordinateBackends)
   {
-
     synchronized (this)
     {
       this.subordinateBackends = subordinateBackends;
@@ -814,7 +799,6 @@
    */
   public boolean hasSubSuffix(DN subSuffixDN)
   {
-
     Backend[] subBackends = subordinateBackends;
     for (Backend b : subBackends)
     {
@@ -854,7 +838,6 @@
   public void removeSubSuffix(DN subSuffixDN, DN parentDN)
          throws ConfigException
   {
-
     synchronized (this)
     {
       boolean matchFound = false;
@@ -918,7 +901,6 @@
    */
   public void addSubordinateBackend(Backend subordinateBackend)
   {
-
     synchronized (this)
     {
       LinkedHashSet<Backend> backendSet =
@@ -951,7 +933,6 @@
    */
   public void removeSubordinateBackend(Backend subordinateBackend)
   {
-
     synchronized (this)
     {
       ArrayList<Backend> backendList =
@@ -995,7 +976,6 @@
    */
   public boolean handlesEntry(DN entryDN)
   {
-
     DN[] baseDNs = getBaseDNs();
     for (int i=0; i < baseDNs.length; i++)
     {
@@ -1037,7 +1017,6 @@
                                            List<DN> baseDNs,
                                            List<DN> excludeDNs)
   {
-
     for (DN baseDN : baseDNs)
     {
       if (entryDN.isDescendantOf(baseDN))

--
Gitblit v1.10.0