diff --git a/src/as/com/threerings/util/ObjectMarshaller.as b/src/as/com/threerings/util/ObjectMarshaller.as index 31e2d2e28..1a7821e08 100644 --- a/src/as/com/threerings/util/ObjectMarshaller.as +++ b/src/as/com/threerings/util/ObjectMarshaller.as @@ -161,7 +161,7 @@ public class ObjectMarshaller } // check sub-properties (of arrays and objects) - for each (var arrValue :Object in (value as Array)) { + for each (var arrValue :Object in value) { var s :String = getValidationError(arrValue); if (s != null) { return s;