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

diff --git a/opends/src/server/org/opends/server/controls/AccountUsableResponseControl.java b/opends/src/server/org/opends/server/controls/AccountUsableResponseControl.java
index b439f40..9f87219 100644
--- a/opends/src/server/org/opends/server/controls/AccountUsableResponseControl.java
+++ b/opends/src/server/org/opends/server/controls/AccountUsableResponseControl.java
@@ -392,8 +392,6 @@
    */
   private static ASN1OctetString encodeValue(int secondsBeforeExpiration)
   {
-
-
     ASN1Integer sbeInteger = new ASN1Integer(TYPE_SECONDS_BEFORE_EXPIRATION,
                                              secondsBeforeExpiration);
 
@@ -434,8 +432,6 @@
                                              boolean isLocked,
                                              int secondsBeforeUnlock)
   {
-
-
     ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(5);
 
     if (isInactive)
@@ -488,8 +484,6 @@
   public static AccountUsableResponseControl decodeControl(Control control)
          throws LDAPException
   {
-
-
     ASN1OctetString controlValue = control.getValue();
     if (controlValue == null)
     {
@@ -602,7 +596,6 @@
    */
   public boolean isUsable()
   {
-
     return isUsable;
   }
 
@@ -618,7 +611,6 @@
    */
   public int getSecondsBeforeExpiration()
   {
-
     return secondsBeforeExpiration;
   }
 
@@ -633,7 +625,6 @@
    */
   public boolean isInactive()
   {
-
     return isInactive;
   }
 
@@ -649,7 +640,6 @@
    */
   public boolean isReset()
   {
-
     return isReset;
   }
 
@@ -663,7 +653,6 @@
    */
   public boolean isExpired()
   {
-
     return isExpired;
   }
 
@@ -678,7 +667,6 @@
    */
   public int getRemainingGraceLogins()
   {
-
     return remainingGraceLogins;
   }
 
@@ -692,7 +680,6 @@
    */
   public boolean isLocked()
   {
-
     return isLocked;
   }
 
@@ -709,7 +696,6 @@
    */
   public int getSecondsBeforeUnlock()
   {
-
     return secondsBeforeUnlock;
   }
 
@@ -722,7 +708,6 @@
    */
   public String toString()
   {
-
     StringBuilder buffer = new StringBuilder();
     toString(buffer);
     return buffer.toString();
@@ -738,7 +723,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("AccountUsableResponseControl(isUsable=");
     buffer.append(isUsable);
 

--
Gitblit v1.10.0