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

Jean-Noël Rouvignac
01.00.2015 6f1a7f89a2bc9812c61f71d282ead3299556f876
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/OnDiskMergeImporter.java
@@ -698,7 +698,7 @@
    this.importStrategy = importStrategy;
  }
  public void doImport(final Source source) throws Exception
  private void doImport(final Source source) throws Exception
  {
    final long phaseOneStartTime = System.currentTimeMillis();
    final PhaseOneWriteableTransaction transaction = new PhaseOneWriteableTransaction(importStrategy);
@@ -1629,7 +1629,7 @@
      private final long startOffset;
      private long size;
      private MappedByteBuffer mmapBuffer;
      private OutputStream mmapBufferOS = new OutputStream()
      private final OutputStream mmapBufferOS = new OutputStream()
      {
        @Override
        public void write(int arg0) throws IOException
@@ -2555,7 +2555,7 @@
        }
    }
    static boolean supportOffHeap()
    private static boolean supportOffHeap()
    {
      return unsafe != null;
    }
@@ -2575,7 +2575,7 @@
      return bufferSize;
    }
    public Buffer get()
    private Buffer get()
    {
      try
      {