Removed the bits about the TOSModule. That module doesn't go into core. WARNING: migration on GridUser withdrawn too, but left the migration number there.

This commit is contained in:
Diva Canto
2012-09-27 16:43:18 -07:00
parent 3c77b8f463
commit 7a50705188
5 changed files with 0 additions and 47 deletions

View File

@@ -50,8 +50,6 @@ namespace OpenSim.Services.Interfaces
public DateTime Login;
public DateTime Logout;
public string TOS = string.Empty;
public GridUserInfo() {}
public GridUserInfo(Dictionary<string, object> kvp)
@@ -80,11 +78,6 @@ namespace OpenSim.Services.Interfaces
if (kvp.ContainsKey("Online"))
Boolean.TryParse(kvp["Online"].ToString(), out Online);
if (kvp.ContainsKey("TOS"))
TOS = kvp["TOS"].ToString();
else
TOS = string.Empty;
}
public Dictionary<string, object> ToKeyValuePairs()
@@ -103,8 +96,6 @@ namespace OpenSim.Services.Interfaces
result["Online"] = Online.ToString();
result["Login"] = Login.ToString();
result["Logout"] = Logout.ToString();
result["TOS"] = TOS;
return result;
}