Wrapped -> Boxed.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5195 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user