More streaming fixups.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4106 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-05-10 02:35:01 +00:00
parent b82108ecea
commit fe3350dc3c
11 changed files with 46 additions and 65 deletions
@@ -29,11 +29,14 @@ public class EntryRemovedEvent extends NamedEvent
* @param oldEntry the previous value of the entry.
*/
public function EntryRemovedEvent (
targetOid :int, name :String, key :Object, oldEntry :DSetEntry)
targetOid :int = 0, name :String = null, key :Object = null,
oldEntry :DSetEntry = null)
{
super(targetOid, name);
_key = key;
_oldEntry = oldEntry;
if (oldEntry != null) {
_oldEntry = oldEntry;
}
}
/**