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/LDAPModification.java | 10 ----------
1 files changed, 0 insertions(+), 10 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPModification.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPModification.java
index 7d226f7..867c9fc 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPModification.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPModification.java
@@ -74,7 +74,6 @@
public LDAPModification(ModificationType modificationType,
LDAPAttribute attribute)
{
-
this.modificationType = modificationType;
this.attribute = attribute;
}
@@ -88,7 +87,6 @@
*/
public ModificationType getModificationType()
{
-
return modificationType;
}
@@ -101,7 +99,6 @@
*/
public void setModificationType(ModificationType modificationType)
{
-
this.modificationType = modificationType;
}
@@ -114,7 +111,6 @@
*/
public LDAPAttribute getAttribute()
{
-
return attribute;
}
@@ -127,7 +123,6 @@
*/
public void setAttribute(LDAPAttribute attribute)
{
-
this.attribute = attribute;
}
@@ -140,7 +135,6 @@
*/
public ASN1Element encode()
{
-
ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
elements.add(new ASN1Enumerated(modificationType.intValue()));
elements.add(attribute.encode());
@@ -163,7 +157,6 @@
public static LDAPModification decode(ASN1Element element)
throws LDAPException
{
-
ArrayList<ASN1Element> elements;
try
{
@@ -279,7 +272,6 @@
*/
public String toString()
{
-
StringBuilder buffer = new StringBuilder();
toString(buffer);
return buffer.toString();
@@ -295,7 +287,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("LDAPModification(type=");
buffer.append(String.valueOf(modificationType));
buffer.append(", attr=");
@@ -315,7 +306,6 @@
*/
public void toString(StringBuilder buffer, int indent)
{
-
StringBuilder indentBuf = new StringBuilder(indent);
for (int i=0 ; i < indent; i++)
{
--
Gitblit v1.10.0