Bugfix: Return to decoding the data when we read it in, so that it's decoded for applyToObject().
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@297 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -62,7 +62,7 @@ public class PropertySetEvent extends NamedEvent
|
|||||||
*/
|
*/
|
||||||
public function getValue () :Object
|
public function getValue () :Object
|
||||||
{
|
{
|
||||||
return EZObjectMarshaller.decode(_data);
|
return _data;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -86,7 +86,7 @@ public class PropertySetEvent extends NamedEvent
|
|||||||
{
|
{
|
||||||
super.readObject(ins);
|
super.readObject(ins);
|
||||||
_index = ins.readInt();
|
_index = ins.readInt();
|
||||||
_data = (ins.readObject() as Object);
|
_data = EZObjectMarshaller.decode(ins.readObject());
|
||||||
}
|
}
|
||||||
|
|
||||||
// from interface Streamable
|
// from interface Streamable
|
||||||
|
|||||||
Reference in New Issue
Block a user