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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/monitors/StackTraceMonitorProvider.java
@@ -86,7 +86,6 @@
  public void initializeMonitorProvider(ConfigEntry configEntry)
         throws ConfigException, InitializationException
  {
    // No initialization is required.
  }
@@ -100,7 +99,6 @@
   */
  public String getMonitorInstanceName()
  {
    return "JVM Stack Trace";
  }
@@ -117,7 +115,6 @@
   */
  public long getUpdateInterval()
  {
    // This monitor does not need to run periodically.
    return 0;
  }
@@ -133,7 +130,6 @@
   */
  public void updateMonitorData()
  {
    // This monitor does not need to run periodically.
    return;
  }
@@ -150,8 +146,6 @@
   */
  public ArrayList<Attribute> getMonitorData()
  {
    Map<Thread,StackTraceElement[]> threadStacks = Thread.getAllStackTraces();