From 3e3246e42af6979556dec66ec10ad3d3e009217c 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.

---
 opendj-sdk/opends/src/server/org/opends/server/controls/LDAPPreReadRequestControl.java |   10 ----------
 1 files changed, 0 insertions(+), 10 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/controls/LDAPPreReadRequestControl.java b/opendj-sdk/opends/src/server/org/opends/server/controls/LDAPPreReadRequestControl.java
index 86a8695..c32244f 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/controls/LDAPPreReadRequestControl.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/controls/LDAPPreReadRequestControl.java
@@ -198,7 +198,6 @@
   public static LDAPPreReadRequestControl decodeControl(Control control)
          throws LDAPException
   {
-
     if (! control.hasValue())
     {
       int    msgID   = MSGID_PREREADREQ_NO_CONTROL_VALUE;
@@ -249,7 +248,6 @@
   private static ASN1OctetString encodeAttributes(LinkedHashSet<String>
                                                        rawAttributes)
   {
-
     if (rawAttributes == null)
     {
       return new ASN1OctetString(new ASN1Sequence().encode());
@@ -276,7 +274,6 @@
    */
   public LinkedHashSet<String> getRawAttributes()
   {
-
     return rawAttributes;
   }
 
@@ -290,7 +287,6 @@
    */
   public void setRawAttributes(LinkedHashSet<String> rawAttributes)
   {
-
     if (rawAttributes == null)
     {
       this.rawAttributes = new LinkedHashSet<String>();
@@ -315,7 +311,6 @@
    */
   public LinkedHashSet<AttributeType> getRequestedAttributes()
   {
-
     if (requestedAttributes == null)
     {
       returnAllOperationalAttrs = false;
@@ -374,7 +369,6 @@
    */
   public boolean returnAllUserAttributes()
   {
-
     if (requestedAttributes == null)
     {
       getRequestedAttributes();
@@ -397,7 +391,6 @@
    */
   public boolean returnAllOperationalAttributes()
   {
-
     if (requestedAttributes == null)
     {
       getRequestedAttributes();
@@ -420,7 +413,6 @@
    */
   public boolean allowsAttribute(AttributeType attrType)
   {
-
     if (requestedAttributes == null)
     {
       getRequestedAttributes();
@@ -450,7 +442,6 @@
    */
   public String toString()
   {
-
     StringBuilder buffer = new StringBuilder();
     toString(buffer);
     return buffer.toString();
@@ -466,7 +457,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("LDAPPreReadRequestControl(criticality=");
     buffer.append(isCritical());
     buffer.append(",attrs=\"");

--
Gitblit v1.10.0