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/protocols/ldap/LDAPRequestHandler.java |   20 +++++++++++---------
 1 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPRequestHandler.java b/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPRequestHandler.java
index 1831569..f5756dd 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPRequestHandler.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPRequestHandler.java
@@ -65,29 +65,31 @@
 {
   private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
 
-  // Indicates whether the Directory Server is in the process of shutting down.
+  /** Indicates whether the Directory Server is in the process of shutting down. */
   private volatile boolean shutdownRequested;
 
-  // The current set of selection keys.
+  /** The current set of selection keys. */
   private volatile SelectionKey[] keys = new SelectionKey[0];
 
-  // The queue that will be used to hold the set of pending connections that
-  // need to be registered with the selector.
-  // TODO: revisit, see Issue 4202.
+  /**
+   * The queue that will be used to hold the set of pending connections that
+   * need to be registered with the selector.
+   * TODO: revisit, see Issue 4202.
+   */
   private List<LDAPClientConnection> pendingConnections =
     new LinkedList<LDAPClientConnection>();
 
-  // Lock object for synchronizing access to the pending connections queue.
+  /** Lock object for synchronizing access to the pending connections queue. */
   private final Object pendingConnectionsLock = new Object();
 
-  // The list of connections ready for request processing.
+  /** The list of connections ready for request processing. */
   private LinkedList<LDAPClientConnection> readyConnections =
     new LinkedList<LDAPClientConnection>();
 
-  // The selector that will be used to monitor the client connections.
+  /** The selector that will be used to monitor the client connections. */
   private final Selector selector;
 
-  // The name to use for this request handler.
+  /** The name to use for this request handler. */
   private final String handlerName;
 
 

--
Gitblit v1.10.0