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/LDAPPostReadRequestControl.java | 10 ----------
1 files changed, 0 insertions(+), 10 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/controls/LDAPPostReadRequestControl.java b/opendj-sdk/opends/src/server/org/opends/server/controls/LDAPPostReadRequestControl.java
index 3116f02..0c58ab2 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/controls/LDAPPostReadRequestControl.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/controls/LDAPPostReadRequestControl.java
@@ -198,7 +198,6 @@
public static LDAPPostReadRequestControl decodeControl(Control control)
throws LDAPException
{
-
if (! control.hasValue())
{
int msgID = MSGID_POSTREADREQ_NO_CONTROL_VALUE;
@@ -250,7 +249,6 @@
private static ASN1OctetString encodeAttributes(LinkedHashSet<String>
rawAttributes)
{
-
if (rawAttributes == null)
{
return new ASN1OctetString(new ASN1Sequence().encode());
@@ -277,7 +275,6 @@
*/
public LinkedHashSet<String> getRawAttributes()
{
-
return rawAttributes;
}
@@ -291,7 +288,6 @@
*/
public void setRawAttributes(LinkedHashSet<String> rawAttributes)
{
-
if (rawAttributes == null)
{
this.rawAttributes = new LinkedHashSet<String>();
@@ -316,7 +312,6 @@
*/
public LinkedHashSet<AttributeType> getRequestedAttributes()
{
-
if (requestedAttributes == null)
{
returnAllOperationalAttrs = false;
@@ -375,7 +370,6 @@
*/
public boolean returnAllUserAttributes()
{
-
if (requestedAttributes == null)
{
getRequestedAttributes();
@@ -398,7 +392,6 @@
*/
public boolean returnAllOperationalAttributes()
{
-
if (requestedAttributes == null)
{
getRequestedAttributes();
@@ -421,7 +414,6 @@
*/
public boolean allowsAttribute(AttributeType attrType)
{
-
if (requestedAttributes == null)
{
getRequestedAttributes();
@@ -451,7 +443,6 @@
*/
public String toString()
{
-
StringBuilder buffer = new StringBuilder();
toString(buffer);
return buffer.toString();
@@ -467,7 +458,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("LDAPPostReadRequestControl(criticality=");
buffer.append(isCritical());
buffer.append(",attrs=\"");
--
Gitblit v1.10.0