From 3e3246e42af6979556dec66ec10ad3d3e009217c Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 01 Mar 2007 05:18:42 +0000
Subject: [PATCH] Remove blank lines at the beginning of methods left after eliminating the debugEnter and debugConstructor calls.
---
opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPRequestHandler.java | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPRequestHandler.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPRequestHandler.java
index 649ea69..35a2da3 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPRequestHandler.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPRequestHandler.java
@@ -171,8 +171,6 @@
*/
public void run()
{
-
-
// Operate in a loop until the server shuts down. Each time through the
// loop, check for new requests, then check for new connections.
while (! shutdownRequested)
@@ -334,7 +332,6 @@
*/
public boolean registerClient(LDAPClientConnection clientConnection)
{
-
// FIXME -- Need to check if the maximum client limit has been reached.
@@ -375,7 +372,6 @@
*/
public void deregisterClient(LDAPClientConnection clientConnection)
{
-
SelectionKey[] keyArray = selector.keys().toArray(new SelectionKey[0]);
for (SelectionKey key : keyArray)
{
@@ -416,7 +412,6 @@
*/
public void deregisterAllClients()
{
-
SelectionKey[] keyArray = selector.keys().toArray(new SelectionKey[0]);
for (SelectionKey key : keyArray)
{
@@ -457,7 +452,6 @@
*/
public Collection<LDAPClientConnection> getClientConnections()
{
-
SelectionKey[] keyArray = selector.keys().toArray(new SelectionKey[0]);
ArrayList<LDAPClientConnection> connList =
@@ -479,7 +473,6 @@
*/
public String getShutdownListenerName()
{
-
return handlerName;
}
@@ -493,7 +486,6 @@
*/
public void registerShutdownListener()
{
-
DirectoryServer.registerShutdownListener(this);
}
@@ -508,7 +500,6 @@
*/
public void processServerShutdown(String reason)
{
-
shutdownRequested = true;
Collection<LDAPClientConnection> clientConnections = getClientConnections();
--
Gitblit v1.10.0