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,8 +24,8 @@ package com.threerings.presents.dobj {
import com.threerings.io.ObjectInputStream;
import com.threerings.io.ObjectOutputStream;
import com.threerings.util.Boxed;
import com.threerings.util.StringBuilder;
import com.threerings.util.Wrapped;
/**
* An element updated event is dispatched when an element of an array
@@ -118,8 +118,8 @@ public class ElementUpdatedEvent extends NamedEvent
_value = ins.readObject();
_index = ins.readInt();
if (_value is Wrapped) {
_value = (_value as Wrapped).unwrap();
if (_value is Boxed) {
_value = (_value as Boxed).unbox();
}
}