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/protocols/ldap/UnbindRequestProtocolOp.java | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/UnbindRequestProtocolOp.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/UnbindRequestProtocolOp.java
index a720ee9..937fc13 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/UnbindRequestProtocolOp.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/UnbindRequestProtocolOp.java
@@ -66,7 +66,6 @@
*/
public byte getType()
{
-
return OP_TYPE_UNBIND_REQUEST;
}
@@ -79,7 +78,6 @@
*/
public String getProtocolOpName()
{
-
return "Unbind Request";
}
@@ -93,7 +91,6 @@
*/
public ASN1Element encode()
{
-
return new ASN1Null(OP_TYPE_UNBIND_REQUEST);
}
@@ -112,7 +109,6 @@
public static UnbindRequestProtocolOp decodeUnbindRequest(ASN1Element element)
throws LDAPException
{
-
try
{
element.decodeAsNull();
@@ -141,7 +137,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("UnbindRequest()");
}
@@ -157,7 +152,6 @@
*/
public void toString(StringBuilder buffer, int indent)
{
-
for (int i=0; i < indent; i++)
{
buffer.append(' ');
--
Gitblit v1.10.0