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/ProfilerThread.java |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfilerThread.java b/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfilerThread.java
index 9902702..46566fc 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfilerThread.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfilerThread.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
- *      Portions Copyright 2014 ForgeRock AS
+ *      Portions Copyright 2014-2015 ForgeRock AS
  */
 package org.opends.server.plugins.profiler;
 
@@ -51,25 +51,25 @@
 
 
 
-  // Indicates whether a request has been received to stop profiling.
+  /** Indicates whether a request has been received to stop profiling. */
   private boolean stopProfiling;
 
-  // The time at which the capture started.
+  /** The time at which the capture started. */
   private long captureStartTime;
 
-  // The time at which the capture stopped.
+  /** The time at which the capture stopped. */
   private long captureStopTime;
 
-  // The number of intervals for which we have captured data.
+  /** The number of intervals for which we have captured data. */
   private long numIntervals;
 
-  // The sampling interval that will be used by this thread.
+  /** The sampling interval that will be used by this thread. */
   private long sampleInterval;
 
-  // The set of thread stack traces captured by this profiler thread.
+  /** The set of thread stack traces captured by this profiler thread. */
   private HashMap<ProfileStack,Long> stackTraces;
 
-  // The thread that is actually performing the capture.
+  /** The thread that is actually performing the capture. */
   private Thread captureThread;
 
 

--
Gitblit v1.10.0