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

Jean-Noel Rouvignac
21.43.2013 bf42203d7acafc7f0e859e971afd6ff95fb6a9a5
opendj-sdk/opends/src/server/org/opends/server/protocols/http/HTTPConnectionHandler.java
@@ -143,11 +143,11 @@
  /**
   * Holds the current client connections. Using {@link ConcurrentHashMap} to
   * ensure no concurrent reads/writes can happen and adds/removes are fast.
   * Using Void for the value since it has no use.
   * ensure no concurrent reads/writes can happen and adds/removes are fast. We
   * only use the keys, so it does not matter what value is put there.
   */
  private Map<ClientConnection, Void> clientConnections =
      new ConcurrentHashMap<ClientConnection, Void>();
  private Map<ClientConnection, ClientConnection> clientConnections =
      new ConcurrentHashMap<ClientConnection, ClientConnection>();
  /** The unique name assigned to this connection handler. */
  private String handlerName;