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
This commit is contained in:
Ray Greenwell
2007-03-08 20:12:38 +00:00
parent e415bb59dd
commit 5e97a04402
@@ -31,7 +31,7 @@ public class ManagerCaller
/** /**
* Called to call a method on the manager. * 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); _plobj.postMessage(method, args);
} }