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

diff --git a/opends/src/server/org/opends/server/controls/LDAPAssertionRequestControl.java b/opends/src/server/org/opends/server/controls/LDAPAssertionRequestControl.java
index 43621f5..33bb2c3 100644
--- a/opends/src/server/org/opends/server/controls/LDAPAssertionRequestControl.java
+++ b/opends/src/server/org/opends/server/controls/LDAPAssertionRequestControl.java
@@ -153,7 +153,6 @@
   public static LDAPAssertionRequestControl decodeControl(Control control)
          throws LDAPException
   {
-
     if (! control.hasValue())
     {
       int    msgID   = MSGID_LDAPASSERT_NO_CONTROL_VALUE;
@@ -196,7 +195,6 @@
    */
   public LDAPFilter getRawFilter()
   {
-
     return rawFilter;
   }
 
@@ -210,7 +208,6 @@
    */
   public void setRawFilter(LDAPFilter rawFilter)
   {
-
     this.rawFilter = rawFilter;
     this.filter    = null;
 
@@ -230,7 +227,6 @@
   public SearchFilter getSearchFilter()
          throws DirectoryException
   {
-
     if (filter == null)
     {
       filter = rawFilter.toSearchFilter();
@@ -248,7 +244,6 @@
    */
   public String toString()
   {
-
     StringBuilder buffer = new StringBuilder();
     toString(buffer);
     return buffer.toString();
@@ -264,7 +259,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("LDAPAssertionRequestControl(criticality=");
     buffer.append(isCritical());
     buffer.append(",filter=\"");

--
Gitblit v1.10.0