From b124934a97c1065036e1891edff7307ee0ba3729 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Wed, 21 Oct 2009 21:49:17 +0000 Subject: [PATCH] MethodQueue -> DelayUtil. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5981 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/presents/client/Client.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/presents/client/Client.as b/src/as/com/threerings/presents/client/Client.as index 178934a2d..b3baca73c 100644 --- a/src/as/com/threerings/presents/client/Client.as +++ b/src/as/com/threerings/presents/client/Client.as @@ -26,8 +26,8 @@ import flash.events.TimerEvent; import flash.utils.Timer; +import com.threerings.util.DelayUtil; import com.threerings.util.Log; -import com.threerings.util.MethodQueue; import com.threerings.util.Throttle; import com.threerings.presents.client.InvocationService_ConfirmListener; @@ -113,7 +113,7 @@ public class Client extends EventDispatcher public function callLater (fn :Function, args :Array = null) :void { - MethodQueue.callLater(fn, args); + DelayUtil.delayFrame(fn, args); } public function getHostname () :String