BootstrapData.services is now a plain old array.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5256 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-22 18:29:06 +00:00
parent 9674176268
commit 1b29e41129
2 changed files with 6 additions and 9 deletions
@@ -211,7 +211,7 @@ public class Client extends EventDispatcher
public function getService (clazz :Class) :InvocationService
{
if (_bstrap != null) {
for each (var isvc :InvocationService in _bstrap.services.asArray()) {
for each (var isvc :InvocationService in _bstrap.services) {
if (isvc is clazz) {
return isvc;
}