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

diff --git a/opends/src/server/org/opends/server/controls/ProxiedAuthV2Control.java b/opends/src/server/org/opends/server/controls/ProxiedAuthV2Control.java
index 7841df2..c15ed34 100644
--- a/opends/src/server/org/opends/server/controls/ProxiedAuthV2Control.java
+++ b/opends/src/server/org/opends/server/controls/ProxiedAuthV2Control.java
@@ -129,7 +129,6 @@
   public static ProxiedAuthV2Control decodeControl(Control control)
          throws LDAPException
   {
-
     ensureNotNull(control);
 
     if (! control.isCritical())
@@ -198,7 +197,6 @@
    */
   public ASN1OctetString getAuthorizationID()
   {
-
     return authorizationID;
   }
 
@@ -212,7 +210,6 @@
    */
   public void setAuthorizationID(ASN1OctetString authorizationID)
   {
-
     if (authorizationID == null)
     {
       this.authorizationID = new ASN1OctetString();
@@ -244,8 +241,6 @@
   public Entry getAuthorizationEntry()
          throws DirectoryException
   {
-
-
     // Check for a zero-length value, which would be for an anonymous user.
     if (authorizationID.value().length == 0)
     {
@@ -399,7 +394,6 @@
    */
   public String toString()
   {
-
     StringBuilder buffer = new StringBuilder();
     toString(buffer);
     return buffer.toString();
@@ -415,7 +409,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("ProxiedAuthorizationV2Control(authzID=\"");
     authorizationID.toString(buffer);
     buffer.append("\")");

--
Gitblit v1.10.0