Small tidying.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5515 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-11-07 01:44:21 +00:00
parent 01ac320432
commit 93d36c045f
2 changed files with 7 additions and 9 deletions
@@ -425,22 +425,18 @@ public class Client
}
});
// otherwise create a new communicator instance and start it up. this will initiate the
// logon process
// create a new communicator and start it up; this will initiate the logon process
_comm = createCommunicator();
_comm.setClassLoader(_loader);
_comm.logon();
// register an interval that we'll use to keep the clock synced and to send pings when
// appropriate
// register an interval to keep the clock synced and to send pings when appropriate
if (_tickInterval == null) {
_tickInterval = new Interval(_runQueue) {
@Override
public void expired () {
@Override public void expired () {
tick();
}
@Override
public String toString () {
@Override public String toString () {
return "Client.tickInterval";
}
};