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/LDIFReader.java | 18 ------------------
1 files changed, 0 insertions(+), 18 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/util/LDIFReader.java b/opendj-sdk/opends/src/server/org/opends/server/util/LDIFReader.java
index 9a08203..af2abf5 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/util/LDIFReader.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/util/LDIFReader.java
@@ -135,7 +135,6 @@
public LDIFReader(LDIFImportConfig importConfig)
throws IOException
{
-
ensureNotNull(importConfig);
this.importConfig = importConfig;
@@ -167,7 +166,6 @@
public Entry readEntry()
throws IOException, LDIFException
{
-
return readEntry(importConfig.validateSchema());
}
@@ -194,8 +192,6 @@
public Entry readEntry(boolean checkSchema)
throws IOException, LDIFException
{
-
-
while (true)
{
// Read the set of lines that make up the next entry.
@@ -343,7 +339,6 @@
public ChangeRecordEntry readChangeRecord(boolean defaultAdd)
throws IOException, LDIFException
{
-
while (true)
{
// Read the set of lines that make up the next entry.
@@ -427,7 +422,6 @@
private LinkedList<StringBuilder> readEntryLines()
throws IOException, LDIFException
{
-
// Read the entry lines into a buffer.
LinkedList<StringBuilder> lines = new LinkedList<StringBuilder>();
int lastLine = -1;
@@ -530,7 +524,6 @@
private DN readDN(LinkedList<StringBuilder> lines)
throws LDIFException
{
-
if (lines.isEmpty())
{
// This is possible if the contents of the first "entry" were just
@@ -713,7 +706,6 @@
private String readChangeType(LinkedList<StringBuilder> lines)
throws LDIFException
{
-
if (lines.isEmpty())
{
// Error. There must be other entries.
@@ -833,7 +825,6 @@
HashMap<AttributeType,List<Attribute>> operationalAttributes)
throws LDIFException
{
-
// Parse the attribute type description.
int colonPos = parseColonPosition(lines, line);
String attrDescr = line.substring(0, colonPos);
@@ -1000,7 +991,6 @@
LinkedList<StringBuilder> lines, StringBuilder line, DN entryDN,
String attributeName) throws LDIFException
{
-
// Parse the attribute type description.
int colonPos = parseColonPosition(lines, line);
String attrDescr = line.substring(0, colonPos);
@@ -1040,7 +1030,6 @@
*/
public long getLastEntryLineNumber()
{
-
return lastEntryLineNumber;
}
@@ -1057,7 +1046,6 @@
*/
public void rejectLastEntry(String message)
{
-
entriesRejected++;
BufferedWriter rejectWriter = importConfig.getRejectWriter();
@@ -1103,7 +1091,6 @@
*/
public void close()
{
-
importConfig.close();
}
@@ -1117,7 +1104,6 @@
*/
private static Attribute parseAttrDescription(String attrDescr)
{
-
String attrName;
String lowerName;
LinkedHashSet<String> options;
@@ -1170,7 +1156,6 @@
*/
public long getEntriesRead()
{
-
return entriesRead;
}
@@ -1184,7 +1169,6 @@
*/
public long getEntriesIgnored()
{
-
return entriesIgnored;
}
@@ -1201,7 +1185,6 @@
*/
public long getEntriesRejected()
{
-
return entriesRejected;
}
@@ -1352,7 +1335,6 @@
DN entryDN,
String attributeName) throws LDIFException
{
-
Attribute attr =
readSingleValueAttribute(lines, line, entryDN, attributeName);
LinkedHashSet<AttributeValue> values = attr.getValues();
--
Gitblit v1.10.0