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/internal/InternalConnectionHandler.java |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/internal/InternalConnectionHandler.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/internal/InternalConnectionHandler.java
index 7bc4c0e..03b89a1 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/internal/InternalConnectionHandler.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/internal/InternalConnectionHandler.java
@@ -95,7 +95,6 @@
    */
   public static InternalConnectionHandler getInstance()
   {
-
     return handlerInstance;
   }
 
@@ -143,7 +142,6 @@
   public void finalizeConnectionHandler(String finalizeReason,
                                         boolean closeConnections)
   {
-
     // No implementation is required.
   }
 
@@ -154,7 +152,6 @@
    */
   public String getConnectionHandlerName()
   {
-
     return "Internal Connection Handler";
   }
 
@@ -165,7 +162,6 @@
    */
   public String getProtocol()
   {
-
     return protocol;
   }
 
@@ -176,7 +172,6 @@
    */
   public Collection<HostPort> getListeners()
   {
-
     return listeners;
   }
 
@@ -191,7 +186,6 @@
    */
   public Collection<ClientConnection> getClientConnections()
   {
-
     return connectionList;
   }
 
@@ -203,7 +197,6 @@
    */
   public void run()
   {
-
     // No implementation is required since this connection handler
     // won't actually accept connections.
     return;
@@ -218,7 +211,6 @@
    */
   public String toString()
   {
-
     return "Internal Connection Handler";
   }
 
@@ -233,7 +225,6 @@
    */
   public void toString(StringBuilder buffer)
   {
-
     buffer.append("Internal Connection Handler");
   }
 }

--
Gitblit v1.10.0