Removes a client listener that is waiting for authentication. @param client client to be removed
(final ClientListener client)
| 344 | * @param client client to be removed |
| 345 | */ |
| 346 | public void remove(final ClientListener client) { |
| 347 | synchronized(authorizing) { |
| 348 | client.timeout.cancel(); |
| 349 | authorizing.remove(client); |
| 350 | } |
| 351 | } |
| 352 | } |