tweaks after review

This commit is contained in:
zzz
2010-06-06 20:36:54 +00:00
parent fc60768a66
commit c20bef3731
4 changed files with 4 additions and 4 deletions

View File

@ -386,7 +386,7 @@ public class EventPumper implements Runnable {
// don't throw an NPE if the connect is gone again
if(chan == null)
return;
chan.configureBlocking(false);;
chan.configureBlocking(false);
if (!_transport.allowConnection()) {
if (_log.shouldLog(Log.WARN))

View File

@ -17,6 +17,7 @@ import net.i2p.util.Log;
class Reader {
private RouterContext _context;
private Log _log;
// TODO change to LBQ ??
private final List<NTCPConnection> _pendingConnections;
private List<NTCPConnection> _liveReads;
private List<NTCPConnection> _readAfterLive;