Let's put that code in the InvocationManager because we're going to need it

elsewhere when we go fix the standalone servers.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4553 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2007-02-11 01:21:20 +00:00
parent ebc99935d5
commit 73bcb0faaf
2 changed files with 26 additions and 17 deletions
@@ -650,14 +650,7 @@ public class PresentsClient
data.clientOid = _clobj.getOid();
// fill in the list of bootstrap services
data.services = new StreamableArrayList<InvocationMarshaller>();
for (String group : _areq.getBootGroups()) {
StreamableArrayList<InvocationMarshaller> list =
PresentsServer.invmgr.bootlists.get(group);
if (list != null) {
data.services.addAll(list);
}
}
data.services = PresentsServer.invmgr.getBootstrapServices(_areq.getBootGroups());
}
/**