* Removes connection from the list of connections.
*
* @param conn connection to be removed
*/
public static void removeConnection(ClientConnection conn) {
Endpoint ep = conn.getEndpoint();
synchronized (connsTable) {
Set conns = (Set) connsTable.get(ep);
if (conns == null) {