From b4483df2701483aabd43fc7d03ebd74770d70170 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Tue, 29 Dec 2009 15:58:40 -0800 Subject: * All modules and connectors for user account service are in place. Untested. * Cleaned up a few things on presence connectors --- OpenSim/Services/Interfaces/IUserService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Services/Interfaces') diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs index 1089c6c..e4e4bec 100644 --- a/OpenSim/Services/Interfaces/IUserService.cs +++ b/OpenSim/Services/Interfaces/IUserService.cs @@ -48,7 +48,7 @@ namespace OpenSim.Services.Interfaces public UUID UserID; public UUID ScopeID; - public Dictionary ServiceURLs; + public Dictionary ServiceURLs; public DateTime Created; @@ -67,7 +67,7 @@ namespace OpenSim.Services.Interfaces if (kvp.ContainsKey("Created")) DateTime.TryParse(kvp["Created"].ToString(), out Created); if (kvp.ContainsKey("ServiceURLs") && kvp["ServiceURLs"] != null && (kvp["ServiceURLs"] is Dictionary)) - ServiceURLs = (Dictionary)kvp["ServiceURLs"]; + ServiceURLs = (Dictionary)kvp["ServiceURLs"]; } public Dictionary ToKeyValuePairs() -- cgit v1.1