Start.logger.finest(getClass().getName() + ":set.size:"
+ set.size());
if (set.size() >= Start.MU)
return;
}
Connection connection = getConnection(socket);
socket.setSoTimeout(timeout);
connection.setServer(new BufferedOutputStream(socket
.getOutputStream()));
connection.setClient(((Element) getElement()).get(connection
.getServer()));
add(connection);
Transfer.run(new BufferedInputStream(socket.getInputStream()),
connection.getClient());
} catch (BreakException e) {
} catch (Exception e) {
Start.logger.log(Level.SEVERE, e.getMessage(), e);
} finally {
try {