Added getBootGroups() to Client, made use of it.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4555 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2007-02-11 03:08:04 +00:00
parent c2dbae4809
commit b7e16c86f5
3 changed files with 11 additions and 4 deletions
@@ -21,7 +21,6 @@
package com.threerings.presents.net;
import java.util.HashSet;
import java.util.TimeZone;
/**
@@ -40,12 +39,12 @@ public class AuthRequest extends UpstreamMessage
/**
* Constructs a auth request with the supplied credentials and client version information.
*/
public AuthRequest (Credentials creds, String version, HashSet<String> bootGroups)
public AuthRequest (Credentials creds, String version, String[] bootGroups)
{
_creds = creds;
_version = version;
_zone = TimeZone.getDefault().getID();
_bootGroups = bootGroups.toArray(new String[bootGroups.size()]);
_bootGroups = bootGroups;
}
/**