mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
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();