* Renamed stuff on UserManagerBase to get implicit implementation of IUserServices (instead of stubs)

This commit is contained in:
lbsa71
2007-09-24 01:16:21 +00:00
parent b3eeb5a8dc
commit 79045abe68
7 changed files with 29 additions and 37 deletions

View File

@@ -122,7 +122,7 @@ namespace OpenSim.Grid.UserServer
UserProfileData userProfile;
if (requestData.Contains("avatar_name"))
{
userProfile = getUserProfile((string)requestData["avatar_name"]);
userProfile = GetUserProfile((string)requestData["avatar_name"]);
if (userProfile == null)
{
return CreateUnknownUserErrorResponse();
@@ -144,7 +144,7 @@ namespace OpenSim.Grid.UserServer
System.Console.WriteLine("METHOD BY UUID CALLED");
if (requestData.Contains("avatar_uuid"))
{
userProfile = getUserProfile((LLUUID)(string)requestData["avatar_uuid"]);
userProfile = GetUserProfile((LLUUID)(string)requestData["avatar_uuid"]);
if (userProfile == null)
{
return CreateUnknownUserErrorResponse();