aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid
diff options
context:
space:
mode:
authorlbsa712007-09-24 01:16:21 +0000
committerlbsa712007-09-24 01:16:21 +0000
commit79045abe685efef2c497b6cae97601689186153f (patch)
tree9917bba55dcd738ee7dc7bce6dd07dfab577c43e /OpenSim/Grid
parent* Purged 'Regions' code pending Agent layer grok. (diff)
downloadopensim-SC_OLD-79045abe685efef2c497b6cae97601689186153f.zip
opensim-SC_OLD-79045abe685efef2c497b6cae97601689186153f.tar.gz
opensim-SC_OLD-79045abe685efef2c497b6cae97601689186153f.tar.bz2
opensim-SC_OLD-79045abe685efef2c497b6cae97601689186153f.tar.xz
* Renamed stuff on UserManagerBase to get implicit implementation of IUserServices (instead of stubs)
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r--OpenSim/Grid/UserServer/UserManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/UserManager.cs b/OpenSim/Grid/UserServer/UserManager.cs
index 44f92b4..20f3b95 100644
--- a/OpenSim/Grid/UserServer/UserManager.cs
+++ b/OpenSim/Grid/UserServer/UserManager.cs
@@ -122,7 +122,7 @@ namespace OpenSim.Grid.UserServer
122 UserProfileData userProfile; 122 UserProfileData userProfile;
123 if (requestData.Contains("avatar_name")) 123 if (requestData.Contains("avatar_name"))
124 { 124 {
125 userProfile = getUserProfile((string)requestData["avatar_name"]); 125 userProfile = GetUserProfile((string)requestData["avatar_name"]);
126 if (userProfile == null) 126 if (userProfile == null)
127 { 127 {
128 return CreateUnknownUserErrorResponse(); 128 return CreateUnknownUserErrorResponse();
@@ -144,7 +144,7 @@ namespace OpenSim.Grid.UserServer
144 System.Console.WriteLine("METHOD BY UUID CALLED"); 144 System.Console.WriteLine("METHOD BY UUID CALLED");
145 if (requestData.Contains("avatar_uuid")) 145 if (requestData.Contains("avatar_uuid"))
146 { 146 {
147 userProfile = getUserProfile((LLUUID)(string)requestData["avatar_uuid"]); 147 userProfile = GetUserProfile((LLUUID)(string)requestData["avatar_uuid"]);
148 if (userProfile == null) 148 if (userProfile == null)
149 { 149 {
150 return CreateUnknownUserErrorResponse(); 150 return CreateUnknownUserErrorResponse();