PresentsDObjectMgr.isRunning() is really isNotShutdown() and we need to

preserve those semantics. Sigh.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5945 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2009-09-10 19:38:36 +00:00
parent f92350f1b3
commit 03ff9f8220
@@ -401,7 +401,6 @@ public class PresentsDObjectMgr
// make a note of the thread that's processing events
synchronized (this) {
_dobjThread = Thread.currentThread();
_running = true;
}
while (isRunning()) {
@@ -1052,7 +1051,7 @@ public class PresentsDObjectMgr
}
/** A flag indicating that the event dispatcher is still running. */
protected boolean _running;
protected boolean _running = true;
/** The event queue via which all events are processed. */
protected Queue<Object> _evqueue = new Queue<Object>();