From f195725db447aad7595810a9950f656163bf1c13 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Tue, 4 Dec 2007 22:14:53 +0000 Subject: keeping opensim safe for children -- made some namespace references less explicit --- OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'OpenSim/Region/Communications/OGS1/OGS1UserServices.cs') diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index ed77e20..d26da90 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs @@ -50,8 +50,8 @@ namespace OpenSim.Region.Communications.OGS1 { if (data.Contains("error_type")) { - OpenSim.Framework.Console.MainLog.Instance.Warn("GRID", "Error sent by user server when trying to get user profile: (" + data["error_type"] + - "): " + data["error_desc"]); + MainLog.Instance.Warn("GRID", "Error sent by user server when trying to get user profile: (" + data["error_type"] + + "): " + data["error_desc"]); return null; } @@ -104,16 +104,13 @@ namespace OpenSim.Region.Communications.OGS1 MainLog.Instance.Warn("INTERGRID", "Got invalid queryID from userServer"); } return pickerlist; - } - public UserProfileData GetUserProfile(string firstName, string lastName) { return GetUserProfile(firstName + " " + lastName); } - public List GenerateAgentPickerRequestResponse(LLUUID queryID, string query) { List pickerlist = new List(); @@ -138,6 +135,7 @@ namespace OpenSim.Region.Communications.OGS1 } return pickerlist; } + public UserProfileData GetUserProfile(string name) { try @@ -213,4 +211,4 @@ namespace OpenSim.Region.Communications.OGS1 throw new Exception("The method or operation is not implemented."); } } -} \ No newline at end of file +} -- cgit v1.1