Rollback last commit.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4351 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-08-30 00:34:07 +00:00
parent a0626f8a3a
commit 0149aa3b1d
3 changed files with 6 additions and 13 deletions
@@ -225,7 +225,7 @@ public class ClientManager
*/
public void applyToClient (Name username, ClientOp clop)
{
resolveClientObject(username, null, new ClientOpResolver(clop));
resolveClientObject(username, new ClientOpResolver(clop));
}
/**
@@ -238,7 +238,7 @@ public class ClientManager
* when the caller is finished with the client object.
*/
public synchronized void resolveClientObject (
Name username, Object authdata, final ClientResolutionListener listener)
Name username, final ClientResolutionListener listener)
{
// look to see if the client object is already resolved
ClientObject clobj = _objmap.get(username);
@@ -260,7 +260,7 @@ public class ClientManager
// create a client resolver instance which will create our
// client object, populate it and notify the listeners
clr = _factory.createClientResolver(username);
clr.init(username, authdata);
clr.init(username);
clr.addResolutionListener(this);
clr.addResolutionListener(listener);
_penders.put(username, clr);