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

Fabio Pistolesi
21.27.2015 52c7423642e0014e276e0bddc203b2e8696bc7b8
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AbstractTree.java
@@ -50,11 +50,11 @@
  public final void open(WriteableTransaction txn, boolean createOnDemand) throws StorageRuntimeException
  {
    txn.openTree(name, createOnDemand);
    afterOpen(txn);
    afterOpen(txn, createOnDemand);
  }
  /** Override in order to perform any additional initialization after the index has opened. */
  void afterOpen(WriteableTransaction txn) throws StorageRuntimeException
  void afterOpen(WriteableTransaction txn, boolean createOnDemand) throws StorageRuntimeException
  {
    // Do nothing by default.
  }