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

Jean-Noël Rouvignac
07.09.2015 9c83afd455aca723155a15fc8f63d256314af4c4
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/BackendMonitor.java
@@ -34,13 +34,11 @@
import java.util.concurrent.atomic.AtomicInteger;
import org.forgerock.i18n.LocalizableMessage;
import org.forgerock.opendj.config.server.ConfigException;
import org.opends.server.admin.std.server.MonitorProviderCfg;
import org.opends.server.api.MonitorProvider;
import org.opends.server.types.Attribute;
import org.opends.server.types.AttributeBuilder;
import org.opends.server.types.Attributes;
import org.opends.server.types.InitializationException;
import org.opends.server.types.SearchFilter;
import org.opends.server.util.TimeThread;
@@ -107,12 +105,6 @@
  }
  @Override
  public void initializeMonitorProvider(MonitorProviderCfg configuration)
      throws ConfigException, InitializationException
  {
  }
  @Override
  public String getMonitorInstanceName()
  {
    return name;
@@ -297,8 +289,8 @@
    this.maxEntries = maxEntries;
  }
  /** Updates the statistics counter to include an indexed search. */
  void updateIndexedSearchCount()
  /** Increments the statistics counter to include an indexed search. */
  void incrementIndexedSearchCount()
  {
    if (filterUseEnabled)
    {
@@ -306,8 +298,8 @@
    }
  }
  /** Updates the statistics counter to include an unindexed search. */
  void updateUnindexedSearchCount()
  /** Increments the statistics counter to include an unindexed search. */
  void incrementUnindexedSearchCount()
  {
    if (filterUseEnabled)
    {