Change the interface a bit before someone depends on it's current form
parent
18ca978b81
commit
8631cea215
|
@ -46,6 +46,6 @@ namespace OpenSim.Data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IUserAccountData
|
public interface IUserAccountData
|
||||||
{
|
{
|
||||||
bool Store(UserAccountData data);
|
bool Store(UserAccountData data, UUID principalID, string token);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,6 +40,10 @@ namespace OpenSim.Data.MySQL
|
||||||
public MySqlUserAccountData(string connectionString, string realm)
|
public MySqlUserAccountData(string connectionString, string realm)
|
||||||
: base(connectionString, realm, "UserAccount")
|
: base(connectionString, realm, "UserAccount")
|
||||||
{
|
{
|
||||||
|
public bool Store(UserAccountData data, UUID principalID, string token)
|
||||||
|
{
|
||||||
|
Store(data);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue