From e7cac727a9231ff3602e61a4ea678e0463eb0e39 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 09:41:42 +0000
Subject: [PATCH] Autorefactored javadocs

---
 opendj-server-legacy/src/main/java/org/opends/server/config/IntegerConfigAttribute.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/config/IntegerConfigAttribute.java b/opendj-server-legacy/src/main/java/org/opends/server/config/IntegerConfigAttribute.java
index d454b17..c3c8de5 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/config/IntegerConfigAttribute.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/config/IntegerConfigAttribute.java
@@ -61,22 +61,22 @@
 {
   private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
 
-  // The set of active values for this attribute.
+  /** The set of active values for this attribute. */
   private List<Long> activeValues;
 
-  // The set of pending values for this attribute.
+  /** The set of pending values for this attribute. */
   private List<Long> pendingValues;
 
-  // Indicates whether this attribute will impose a lower bound for its values.
+  /** Indicates whether this attribute will impose a lower bound for its values. */
   private boolean hasLowerBound;
 
-  // Indicates whether this attribute will impose an upper bound for its values.
+  /** Indicates whether this attribute will impose an upper bound for its values. */
   private boolean hasUpperBound;
 
-  // The lower bound for values of this attribute.
+  /** The lower bound for values of this attribute. */
   private long lowerBound;
 
-  // The upper bound for values of this attribute.
+  /** The upper bound for values of this attribute. */
   private long upperBound;
 
 

--
Gitblit v1.10.0