This is dubious. We define an _omgr that shadows super._omgr, assign it in our

constructor and then never use it. This is almost a noop, except that
ClientDObjectMgr registers and starts a flusher interval that will never be
shutdown. Since ServerCommunicator lives for the lifetime of the server, this
has not caused problems.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6034 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2010-02-09 19:54:15 +00:00
parent f9524a1a9e
commit c7ac36ac51
@@ -51,7 +51,6 @@ public class ServerCommunicator extends Communicator
super(client);
_conmgr = conmgr;
_rootmgr = rootmgr;
_omgr = new ClientDObjectMgr(this, client);
}
@Override // from Communicator
@@ -205,7 +204,6 @@ public class ServerCommunicator extends Communicator
protected ConnectionManager _conmgr;
protected RootDObjectManager _rootmgr;
protected Connection _conn;
protected ClientDObjectMgr _omgr;
protected ClassLoader _loader;
protected Exception _logonError;