Allow undefined array elements to print as "undefined" rather than "null".

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4749 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2007-07-06 23:07:44 +00:00
parent ecefdcac85
commit fd9a50fd55
+1 -1
View File
@@ -187,7 +187,7 @@ public class StringUtil
return mx.utils.StringUtil.trim(str);
}
public static function toString (obj :Object) :String
public static function toString (obj :*) :String
{
if (obj is Array) {
var arr :Array = (obj as Array);