From 6559b163ed84aa550584b6a8a668eb3ea2f04ee4 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Tue, 1 Apr 2008 02:02:34 +0000 Subject: [PATCH] This only need to be unique, not meaningful. (And yes, code running in a security boundary cannot set aliases, thank god) Network traffic--. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4987 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/ObjectMarshaller.as | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/as/com/threerings/util/ObjectMarshaller.as b/src/as/com/threerings/util/ObjectMarshaller.as index 64805fdcb..4cab24ff3 100644 --- a/src/as/com/threerings/util/ObjectMarshaller.as +++ b/src/as/com/threerings/util/ObjectMarshaller.as @@ -191,9 +191,9 @@ public class ObjectMarshaller */ private static function staticInit () :void { - registerClassAlias("Point", Point); - registerClassAlias("Rectangle", Rectangle); - registerClassAlias("Dictionary", Dictionary); + registerClassAlias("P", Point); + registerClassAlias("R", Rectangle); + registerClassAlias("D", Dictionary); } staticInit();