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/ProfileStackFrame.java | 20 ++++++++++++-------- 1 files changed, 12 insertions(+), 8 deletions(-) diff --git a/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileStackFrame.java b/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileStackFrame.java index e735645..e16b7fb 100644 --- a/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileStackFrame.java +++ b/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileStackFrame.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; @@ -49,19 +49,23 @@ - // The mapping between the line numbers for this stack frame and the - // number of times that they were encountered. + /** + * The mapping between the line numbers for this stack frame and the + * number of times that they were encountered. + */ private HashMap<Integer,Long> lineNumbers; - // The mapping for subordinate frames. It is mapped to itself because we - // use a fuzzy equality comparison and sets do not have a get method that - // can be used to retrieve a specified object. + /** + * The mapping for subordinate frames. It is mapped to itself because we + * use a fuzzy equality comparison and sets do not have a get method that + * can be used to retrieve a specified object. + */ private HashMap<ProfileStackFrame,ProfileStackFrame> subordinateFrames; - // The class name for this stack frame. + /** The class name for this stack frame. */ private String className; - // The method name for this stack frame. + /** The method name for this stack frame. */ private String methodName; -- Gitblit v1.10.0