From 99aaa917a95d7ec19e14dad25f61f58ff84753b1 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 10:49:57 +0000
Subject: [PATCH] Autorefactored javadocs

---
 opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileViewer.java |   18 ++++++++++--------
 1 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileViewer.java b/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileViewer.java
index e334a81..12278ff 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileViewer.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileViewer.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
- *      Portions Copyright 2012-2014 ForgeRock AS
+ *      Portions Copyright 2012-2015 ForgeRock AS
  */
 package org.opends.server.plugins.profiler;
 
@@ -72,23 +72,25 @@
 public class ProfileViewer
        implements TreeSelectionListener
 {
-  // The root stack frames for the profile information that has been captured.
+  /** The root stack frames for the profile information that has been captured. */
   private HashMap<ProfileStackFrame,ProfileStackFrame> rootFrames;
 
-  // A set of stack traces indexed by class and method name.
+  /** A set of stack traces indexed by class and method name. */
   private HashMap<String,HashMap<ProfileStack,Long>> stacksByMethod;
 
-  // The editor pane that will provide detailed information about the selected
-  // stack frame.
+  /**
+   * The editor pane that will provide detailed information about the selected
+   * stack frame.
+   */
   private JEditorPane frameInfoPane;
 
-  // The GUI tree that will be used to hold stack frame information;
+  /** The GUI tree that will be used to hold stack frame information;. */
   private JTree profileTree;
 
-  // The total length of time in milliseconds for which data is available.
+  /** The total length of time in milliseconds for which data is available. */
   private long totalDuration;
 
-  // The total number of profile intervals for which data is available.
+  /** The total number of profile intervals for which data is available. */
   private long totalIntervals;
 
 

--
Gitblit v1.10.0