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

diff --git a/opends/src/server/org/opends/server/core/CompareOperation.java b/opends/src/server/org/opends/server/core/CompareOperation.java
index 631848d..f82dbc0 100644
--- a/opends/src/server/org/opends/server/core/CompareOperation.java
+++ b/opends/src/server/org/opends/server/core/CompareOperation.java
@@ -201,7 +201,6 @@
    */
   public final ByteString getRawEntryDN()
   {
-
     return rawEntryDN;
   }
 
@@ -216,7 +215,6 @@
    */
   public final void setRawEntryDN(ByteString rawEntryDN)
   {
-
     this.rawEntryDN = rawEntryDN;
 
     entryDN = null;
@@ -234,7 +232,6 @@
    */
   public final DN getEntryDN()
   {
-
     return entryDN;
   }
 
@@ -247,7 +244,6 @@
    */
   public final String getRawAttributeType()
   {
-
     return rawAttributeType;
   }
 
@@ -262,7 +258,6 @@
    */
   public final void setRawAttributeType(String rawAttributeType)
   {
-
     this.rawAttributeType = rawAttributeType;
 
     attributeType = null;
@@ -279,7 +274,6 @@
    */
   public final AttributeType getAttributeType()
   {
-
     return attributeType;
   }
 
@@ -292,7 +286,6 @@
    */
   public final ByteString getAssertionValue()
   {
-
     return assertionValue;
   }
 
@@ -306,7 +299,6 @@
    */
   public final void setAssertionValue(ByteString assertionValue)
   {
-
     this.assertionValue = assertionValue;
   }
 
@@ -321,7 +313,6 @@
    */
   public final Entry getEntryToCompare()
   {
-
     return entry;
   }
 
@@ -333,7 +324,6 @@
   @Override()
   public final long getProcessingStartTime()
   {
-
     return processingStartTime;
   }
 
@@ -345,7 +335,6 @@
   @Override()
   public final long getProcessingStopTime()
   {
-
     return processingStopTime;
   }
 
@@ -357,7 +346,6 @@
   @Override()
   public final long getProcessingTime()
   {
-
     return (processingStopTime - processingStartTime);
   }
 
@@ -489,7 +477,6 @@
   @Override()
   public final List<Control> getResponseControls()
   {
-
     return responseControls;
   }
 
@@ -523,7 +510,6 @@
   @Override()
   public final void run()
   {
-
     setResultCode(ResultCode.UNDEFINED);
 
 
@@ -1120,7 +1106,6 @@
   @Override()
   public final CancelResult cancel(CancelRequest cancelRequest)
   {
-
     this.cancelRequest = cancelRequest;
 
     CancelResult cancelResult = getCancelResult();
@@ -1163,7 +1148,6 @@
   @Override()
   public final CancelRequest getCancelRequest()
   {
-
     return cancelRequest;
   }
 
@@ -1175,7 +1159,6 @@
   @Override()
   boolean setCancelRequest(CancelRequest cancelRequest)
   {
-
     this.cancelRequest = cancelRequest;
     return true;
   }
@@ -1188,7 +1171,6 @@
   @Override()
   public final void toString(StringBuilder buffer)
   {
-
     buffer.append("CompareOperation(connID=");
     buffer.append(clientConnection.getConnectionID());
     buffer.append(", opID=");

--
Gitblit v1.10.0