git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4976 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2008-03-19 07:37:41 +00:00
parent d0a3fa4c8e
commit 933183a53a
@@ -166,7 +166,7 @@ public class ObjectMarshaller
if (type == "number" || type == "string" || type == "boolean" ) {
return null; // kosher!
}
if (-1 != VALID_CLASSES.indexOf(ClassUtil.getClassName(value))) {
if (-1 != VALID_CLASSES.indexOf(ClassUtil.getClass(value))) {
return null; // kosher
}
if (!Util.isPlainObject(value)) {
@@ -187,8 +187,6 @@ public class ObjectMarshaller
}
/** Non-simple classes that we allow, as long as they are not subclassed. */
protected static const VALID_CLASSES :Array = [
"flash.utils.ByteArray", "flash.geom.Point", "flash.geom.Rectangle"
];
protected static const VALID_CLASSES :Array = [ ByteArray, Point, Rectangle ];
}
}