mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
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");
  }
}