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

Jean-Noël Rouvignac
01.41.2015 ad41085e4ca8a32e29d443591069ec4e94e65067
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/BackendMonitor.java
@@ -48,7 +48,6 @@
 */
class BackendMonitor extends MonitorProvider<MonitorProviderCfg>
{
  /** Represents the statistical information kept for each search filter. */
  private static class FilterStats implements Comparable<FilterStats>
  {
@@ -106,7 +105,6 @@
    this.rootContainer = rootContainer;
  }
  /** {@inheritDoc} */
  @Override
  public void initializeMonitorProvider(MonitorProviderCfg configuration)
       throws ConfigException, InitializationException
@@ -187,7 +185,6 @@
    return monitorAttrs;
  }
  /**
   * Updates the index filter statistics with this latest search filter
   * and the reason why an index was not used.
@@ -207,7 +204,6 @@
    {
      stats = filterToStats.get(searchFilter);
      if(stats != null)
      {
        stats.update(1, failureMessage);
@@ -242,7 +238,6 @@
    {
      stats = filterToStats.get(searchFilter);
      if(stats != null)
      {
        stats.update(1, matchingEntries);
@@ -299,9 +294,7 @@
    this.maxEntries = maxEntries;
  }
  /**
   * Updates the statistics counter to include an indexed search.
   */
  /** Updates the statistics counter to include an indexed search. */
  void updateIndexedSearchCount()
  {
    if (filterUseEnabled)
@@ -310,9 +303,7 @@
    }
  }
  /**
   * Updates the statistics counter to include an unindexed search.
   */
  /** Updates the statistics counter to include an unindexed search. */
  void updateUnindexedSearchCount()
  {
    if (filterUseEnabled)