From 3cb68d1c8b4d7f5960b50db0040fe4e5f4ea6f77 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 28 Dec 2009 20:37:21 -0800 Subject: Removed AccountType, GodLevel and UserFlags from UserAccountData. Doesn't belong there. --- OpenSim/Services/Interfaces/IUserService.cs | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'OpenSim/Services') diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs index 6742758..e458178 100644 --- a/OpenSim/Services/Interfaces/IUserService.cs +++ b/OpenSim/Services/Interfaces/IUserService.cs @@ -48,15 +48,6 @@ namespace OpenSim.Services.Interfaces public UUID UserID; public UUID ScopeID; - // These are here because they - // concern the account rather than - // the profile. They just happen to - // be used in the Linden profile as well - // - public int GodLevel; - public int UserFlags; - public string AccountType; - public DateTime Created; public UserAccount(Dictionary kvp) @@ -71,12 +62,6 @@ namespace OpenSim.Services.Interfaces UUID.TryParse(kvp["UserID"].ToString(), out UserID); if (kvp.ContainsKey("ScopeID")) UUID.TryParse(kvp["ScopeID"].ToString(), out ScopeID); - if (kvp.ContainsKey("GodLevel")) - Int32.TryParse(kvp["GodLevel"].ToString(), out GodLevel); - if (kvp.ContainsKey("UserFlags")) - Int32.TryParse(kvp["UserFlags"].ToString(), out UserFlags); - if (kvp.ContainsKey("AccountType")) - AccountType = kvp["AccountType"].ToString(); if (kvp.ContainsKey("Created")) DateTime.TryParse(kvp["Created"].ToString(), out Created); @@ -90,9 +75,6 @@ namespace OpenSim.Services.Interfaces result["Email"] = Email; result["UserID"] = UserID.ToString(); result["ScopeID"] = ScopeID.ToString(); - result["GodLevel"] = GodLevel.ToString(); - result["UserFlags"] = UserFlags.ToString(); - result["AccountType"] = AccountType.ToString(); result["Created"] = Created.ToString(); return result; -- cgit v1.1