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

diff --git a/opends/src/server/org/opends/server/core/PersistentSearch.java b/opends/src/server/org/opends/server/core/PersistentSearch.java
index 34be963..4fd52ba 100644
--- a/opends/src/server/org/opends/server/core/PersistentSearch.java
+++ b/opends/src/server/org/opends/server/core/PersistentSearch.java
@@ -90,7 +90,6 @@
                           Set<PersistentSearchChangeType> changeTypes,
                           boolean returnECs)
   {
-
     this.searchOperation = searchOperation;
     this.changeTypes     = changeTypes;
     this.returnECs       = returnECs;
@@ -109,7 +108,6 @@
    */
   public SearchOperation getSearchOperation()
   {
-
     return searchOperation;
   }
 
@@ -122,7 +120,6 @@
    */
   public Set<PersistentSearchChangeType> getChangeTypes()
   {
-
     return changeTypes;
   }
 
@@ -135,7 +132,6 @@
    */
   public boolean getReturnECs()
   {
-
     return returnECs;
   }
 
@@ -148,7 +144,6 @@
    */
   public DN getBaseDN()
   {
-
     return baseDN;
   }
 
@@ -161,7 +156,6 @@
    */
   public SearchScope getScope()
   {
-
     return scope;
   }
 
@@ -174,7 +168,6 @@
    */
   public SearchFilter getFilter()
   {
-
     return filter;
   }
 
@@ -188,8 +181,6 @@
    */
   public void processAdd(AddOperation addOperation, Entry entry)
   {
-
-
     // See if we care about add operations.
     if (! changeTypes.contains(PersistentSearchChangeType.ADD))
     {
@@ -305,8 +296,6 @@
    */
   public void processDelete(DeleteOperation deleteOperation, Entry entry)
   {
-
-
     // See if we care about delete operations.
     if (! changeTypes.contains(PersistentSearchChangeType.DELETE))
     {
@@ -424,8 +413,6 @@
   public void processModify(ModifyOperation modifyOperation, Entry oldEntry,
                             Entry newEntry)
   {
-
-
     // See if we care about modify operations.
     if (! changeTypes.contains(PersistentSearchChangeType.MODIFY))
     {
@@ -544,8 +531,6 @@
   public void processModifyDN(ModifyDNOperation modifyDNOperation,
                               Entry oldEntry, Entry newEntry)
   {
-
-
     // See if we care about modify DN operations.
     if (! changeTypes.contains(PersistentSearchChangeType.MODIFY_DN))
     {
@@ -684,7 +669,6 @@
    */
   public String toString()
   {
-
     StringBuilder buffer = new StringBuilder();
     toString(buffer);
     return buffer.toString();
@@ -700,7 +684,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("PersistentSearch(connID=");
     buffer.append(searchOperation.getConnectionID());
     buffer.append(",opID=");

--
Gitblit v1.10.0