Moved BodyObject.username down to ClientObject.username so that one can look up

the PresentsClient given a ClientObject.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5435 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-10-10 22:45:58 +00:00
parent 91d7846b46
commit 97b6ea79c5
4 changed files with 31 additions and 42 deletions
@@ -44,14 +44,4 @@ public class CrowdClientResolver extends ClientResolver
{
return new CrowdPermissionPolicy();
}
@Override // from ClientResolver
protected void resolveClientData (ClientObject clobj)
throws Exception
{
super.resolveClientData(clobj);
// just fill in the username
((BodyObject)clobj).username = _username;
}
}