5051525354555657585960
public synchronized boolean removeClient(String identifier) { Connection client = clientPool.remove(identifier); boolean success = false; if (client != null) { try { client.shutdown(); success = true; } catch (IOException e) { } } return success;
6263646566676869707172
public boolean removeClient(String identifier) { Connection client = clientMap.remove(identifier); boolean success = false; if (client != null) { try { client.shutdown(); success = true; } catch (IOException e) { } } return success;
5657585960616263646566