From 5e97a04402e9e854dd68c6aceb088ed46f0faa6f Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Thu, 8 Mar 2007 20:12:38 +0000 Subject: [PATCH] Change this instance back. Varargs are still a nightmare and should generally be avoided, but nobody's going to override this method and we're always calling a regular method on the server, not a varargs method. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4622 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/crowd/data/ManagerCaller.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/crowd/data/ManagerCaller.as b/src/as/com/threerings/crowd/data/ManagerCaller.as index 0be55b135..2d0985fc2 100644 --- a/src/as/com/threerings/crowd/data/ManagerCaller.as +++ b/src/as/com/threerings/crowd/data/ManagerCaller.as @@ -31,7 +31,7 @@ public class ManagerCaller /** * Called to call a method on the manager. */ - public function invoke (method :String, args :Array = null) :void + public function invoke (method :String, ... args) :void { _plobj.postMessage(method, args); }