From f4a25e95213c829bbca7ee9009fc6997ca9366bd Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 4 Oct 2006 21:03:05 +0000 Subject: [PATCH] Use TypedArray for array fields when converting a Streamable into ActionScript. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4402 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/tools/ActionScriptSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/presents/tools/ActionScriptSource.java b/src/java/com/threerings/presents/tools/ActionScriptSource.java index 7bf37d95b..23be59556 100644 --- a/src/java/com/threerings/presents/tools/ActionScriptSource.java +++ b/src/java/com/threerings/presents/tools/ActionScriptSource.java @@ -249,7 +249,7 @@ public class ActionScriptSource public static String toActionScriptType (Class type) { if (type.isArray()) { - return "Array"; + return "TypedArray"; } String tname = type.getName();