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

diff --git a/opendj-sdk/opends/src/server/org/opends/server/util/LDIFWriter.java b/opendj-sdk/opends/src/server/org/opends/server/util/LDIFWriter.java
index 0204db0..f7fe917 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/util/LDIFWriter.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/util/LDIFWriter.java
@@ -87,7 +87,6 @@
   public LDIFWriter(LDIFExportConfig exportConfig)
          throws IOException
   {
-
     ensureNotNull(exportConfig);
     this.exportConfig = exportConfig;
 
@@ -123,7 +122,6 @@
   public void writeComment(String comment, int wrapColumn)
          throws IOException
   {
-
     ensureNotNull(comment);
 
 
@@ -245,7 +243,6 @@
   public boolean writeEntry(Entry entry)
          throws IOException, LDIFException
   {
-
     ensureNotNull(entry);
     return entry.toLDIF(exportConfig);
   }
@@ -265,7 +262,6 @@
   public void writeAddChangeRecord(Entry entry)
          throws IOException
   {
-
     ensureNotNull(entry);
 
 
@@ -343,7 +339,6 @@
   public void writeDeleteChangeRecord(Entry entry, boolean commentEntry)
          throws IOException
   {
-
     ensureNotNull(entry);
 
     // Get the information necessary to write the LDIF.
@@ -422,7 +417,6 @@
   public void writeModifyChangeRecord(DN dn, List<Modification> modifications)
          throws IOException
   {
-
     ensureNotNull(dn, modifications);
 
     // If there aren't any modifications, then there's nothing to do.
@@ -533,7 +527,6 @@
                                         DN newSuperior)
          throws IOException
   {
-
     ensureNotNull(dn, newRDN);
 
 
@@ -602,7 +595,6 @@
   public void flush()
          throws IOException
   {
-
     writer.flush();
   }
 
@@ -616,7 +608,6 @@
   public void close()
          throws IOException
   {
-
     writer.flush();
     writer.close();
   }
@@ -638,7 +629,6 @@
   public static void appendLDIFSeparatorAndValue(StringBuilder buffer,
                                                  byte[] valueBytes)
   {
-
     ensureNotNull(buffer, valueBytes);
 
 
@@ -694,7 +684,6 @@
                                    boolean wrapLines, int wrapColumn)
           throws IOException
   {
-
     ensureNotNull(line, writer);
 
     int length = line.length();

--
Gitblit v1.10.0