From a49dee3f75d6e2548e9114d9495655dd56f06973 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.

---
 opends/src/server/org/opends/server/core/AuthenticatedUsers.java |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/opends/src/server/org/opends/server/core/AuthenticatedUsers.java b/opends/src/server/org/opends/server/core/AuthenticatedUsers.java
index 265be11..cd47191 100644
--- a/opends/src/server/org/opends/server/core/AuthenticatedUsers.java
+++ b/opends/src/server/org/opends/server/core/AuthenticatedUsers.java
@@ -74,7 +74,6 @@
    */
   public AuthenticatedUsers()
   {
-
     userMap = new ConcurrentHashMap<DN,CopyOnWriteArraySet<ClientConnection>>();
 
     DirectoryServer.registerChangeNotificationListener(this);
@@ -92,7 +91,6 @@
    */
   public synchronized void put(DN userDN, ClientConnection clientConnection)
   {
-
     CopyOnWriteArraySet<ClientConnection> connectionSet = userMap.get(userDN);
     if (connectionSet == null)
     {
@@ -118,7 +116,6 @@
    */
   public synchronized void remove(DN userDN, ClientConnection clientConnection)
   {
-
     CopyOnWriteArraySet<ClientConnection> connectionSet = userMap.get(userDN);
     if (connectionSet != null)
     {

--
Gitblit v1.10.0