731732733734735736737738739740741742743744
if (key==null) continue; Object att=key.attachment(); if (att instanceof EndPoint) { EndPoint endpoint = (EndPoint)att; try { endpoint.close(); } catch(IOException e) { Log.ignore(e); }
815816817818819820821822823824825826827828
724725726727728729730731732733734735736737738739
while (iter.hasNext()) { SelectionKey key = (SelectionKey)iter.next(); if (key==null) continue; EndPoint endpoint = (EndPoint)key.attachment(); if (endpoint!=null) { try { endpoint.close(); } catch(IOException e) { Log.ignore(e); }
843844845846847848849850851852853854855856