No need for this null check. We already dereferenced _client earlier to obtain

our connection id.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6035 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2010-02-09 19:55:22 +00:00
parent c7ac36ac51
commit 0b90f21fe3
@@ -447,9 +447,7 @@ public class BlockingCommunicator extends Communicator
_datagramChannel.write(buf);
// notify the tracker
if (_client != null) {
_client.getMessageTracker().messageSent(true, size, msg);
}
_client.getMessageTracker().messageSent(true, size, msg);
}
/**