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

dugan
19.17.2006 aa160386929ecf4162592214c75ae577a019be50
opends/src/server/org/opends/server/backends/jeb/BackendImpl.java
@@ -1120,6 +1120,7 @@
   * @param configEntry The backend instance configuration entry.
   * @param  baseDNs      The set of base DNs that have been configured for this
   *                      backend.
   * @param statEntry Optional entry to save stats into.
   * @throws  ConfigException  If an unrecoverable problem arises during
   *                           initialization.
   * @throws  InitializationException  If a problem occurs during initialization
@@ -1128,7 +1129,7 @@
   * @throws DirectoryException If a Directory Server error occurs.
   */
  public void verifyBackend(VerifyConfig verifyConfig, ConfigEntry configEntry,
                            DN[] baseDNs)
                            DN[] baseDNs, Entry statEntry)
       throws InitializationException, ConfigException, DirectoryException
  {
    assert debugEnter(CLASS_NAME, "verifyBackend");
@@ -1154,7 +1155,7 @@
      }
      VerifyJob verifyJob = new VerifyJob(config, verifyConfig);
      verifyJob.verifyBackend(rootContainer);
      verifyJob.verifyBackend(rootContainer, statEntry);
    }
    catch (DatabaseException e)
    {