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

Jean-Noel Rouvignac
20.23.2015 5d17d3fc157b4d05825d04050c1f80b0e3dbbbdc
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexOutputBuffer.java
@@ -32,6 +32,7 @@
import java.io.ByteArrayOutputStream;
import org.forgerock.opendj.ldap.ByteSequence;
import org.opends.server.backends.pluggable.OnDiskMergeBufferImporter.IndexKey;
/**
 * This class represents a index buffer used to store the keys and entry IDs
@@ -92,7 +93,7 @@
   * Used to make sure that an instance of this class is put on the
   * correct scratch file writer work queue for processing.
   */
  private Importer.IndexKey indexKey;
  private IndexKey indexKey;
  /**
   * Set to {@code true} if the buffer should not be recycled. Used when the
@@ -568,7 +569,7 @@
   *
   * @param indexKey The index key.
   */
  public void setIndexKey(Importer.IndexKey indexKey)
  public void setIndexKey(IndexKey indexKey)
  {
    this.indexKey = indexKey;
  }
@@ -577,7 +578,7 @@
   * Return the index key of an index buffer.
   * @return The index buffer's index key.
   */
  public Importer.IndexKey getIndexKey()
  public IndexKey getIndexKey()
  {
    return indexKey;
  }