tomato tomato

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6165 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Charlie Groves
2010-09-16 20:02:20 +00:00
parent e75d4917c8
commit 08a4a5281d
@@ -50,7 +50,7 @@ public class SelectorIterable
// check for incoming network events
int eventCount =
_selectLoopTime == 0 ? _selector.select(_selectLoopTime) : _selector.selectNow();
_selectLoopTime == 0 ? _selector.selectNow() : _selector.select(_selectLoopTime);
Set<SelectionKey> ready = _selector.selectedKeys();
if (eventCount == 0 && ready.size() != 0) {
log.warning("select() returned no selected sockets, but there are "