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

dugan
21.25.2009 1db6e085da2a670a32c3a5a6b91065862655b6c5
Fix problem with import ID set initialization.
1 files modified
6 ■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/backends/jeb/Index.java 6 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/backends/jeb/Index.java
@@ -115,8 +115,7 @@
  //Thread local area to store per thread cursors.
  private final ThreadLocal<Cursor> curLocal = new ThreadLocal<Cursor>();
  private final ImportIDSet newImportIDSet = new ImportIDSet(indexEntryLimit,
                                                indexEntryLimit, maintainCount);
  private final ImportIDSet newImportIDSet;
  /**
   * Create a new index object.
@@ -145,7 +144,8 @@
    this.indexEntryLimit = indexEntryLimit;
    this.cursorEntryLimit = cursorEntryLimit;
    this.maintainCount = maintainCount;
    this.newImportIDSet = new ImportIDSet(indexEntryLimit,
                                          indexEntryLimit, maintainCount);
    DatabaseConfig dbNodupsConfig = new DatabaseConfig();
    if(env.getConfig().getReadOnly())