* refactor: collapse UpdateUserProfileProperties() into existing UpdateUserProfile

* the methods were identical except that the Properties one did a check for the user profile beforehand.  However, every caller was doing this already anyway.
This commit is contained in:
Justin Clarke Casey
2008-09-15 19:02:34 +00:00
parent 6791ac3958
commit ddaa90d270
7 changed files with 27 additions and 61 deletions

View File

@@ -695,7 +695,7 @@ namespace OpenSim.Grid.UserServer
}
// call plugin!
bool ret = UpdateUserProfileProperties(userProfile);
bool ret = UpdateUserProfile(userProfile);
responseData["returnString"] = ret.ToString();
response.Value = responseData;
return response;