Only post a compound event if it contains other events when a transaction

is committed.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1064 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-02-21 00:59:29 +00:00
parent 2e6c813bd6
commit 424f2da631
@@ -1,5 +1,5 @@
//
// $Id: CompoundEvent.java,v 1.1 2002/02/09 07:50:37 mdb Exp $
// $Id: CompoundEvent.java,v 1.2 2002/02/21 00:59:29 mdb Exp $
package com.threerings.presents.dobj;
@@ -74,8 +74,11 @@ public class CompoundEvent extends TypedEvent
// first clear our participants
clearParticipants();
// then post this event onto the queue
_omgr.postEvent(this);
// then post this event onto the queue (but only if we actually
// accumulated some events)
if (_events.size() > 0) {
_omgr.postEvent(this);
}
}
/**