Wrapped -> Boxed.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5195 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2008-06-23 21:09:14 +00:00
parent 0d93214e22
commit f3abe8507b
14 changed files with 54 additions and 44 deletions
@@ -24,9 +24,9 @@ package com.threerings.presents.dobj {
import com.threerings.io.ObjectInputStream;
import com.threerings.io.ObjectOutputStream;
import com.threerings.util.Boxed;
import com.threerings.util.Log;
import com.threerings.util.StringBuilder;
import com.threerings.util.Wrapped;
/**
* An entry removed event is dispatched when an entry is removed from a
@@ -125,8 +125,8 @@ public class EntryRemovedEvent extends NamedEvent
super.readObject(ins);
_key = ins.readObject();
if (_key is Wrapped) {
_key = (_key as Wrapped).unwrap();
if (_key is Boxed) {
_key = (_key as Boxed).unbox();
}
}