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

neil_a_wilson
09.57.2006 8117c910d984295ef39159631f264023f0b3e6b5
opends/src/server/org/opends/server/api/MonitorProvider.java
@@ -131,7 +131,7 @@
    }
    catch (Exception e)
    {
      assert debugException(CLASS_NAME, "processServerShutdown", e);
      assert debugException(CLASS_NAME, "finalizeMonitorProvider", e);
    }
  }
@@ -245,36 +245,5 @@
      }
    }
  }
  /**
   * Retrieves the human-readable name for this shutdown listener.
   *
   * @return  The human-readable name for this shutdown listener.
   */
  public final String getShutdownListenerName()
  {
    assert debugEnter(CLASS_NAME, "getShutdownListenerName");
    return "Monitor Provider " + getMonitorInstanceName();
  }
  /**
   * Indicates that the Directory Server has received a request to
   * stop running and that this shutdown listener should take any
   * action necessary to prepare for it.
   *
   * @param  reason  The human-readable reason for the shutdown.
   */
  public final void processServerShutdown(String reason)
  {
    assert debugEnter(CLASS_NAME, "processServerShutdown",
                      String.valueOf(reason));
    finalizeMonitorProvider();
  }
}