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:
Ray Greenwell
2007-05-08 17:41:22 +00:00
parent cc94dacfce
commit cb24d4adfb
@@ -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