From 8631cea2154f0ded2e3fa27349045650ce6f5998 Mon Sep 17 00:00:00 2001 From: Melanie Date: Tue, 29 Dec 2009 20:14:26 +0000 Subject: Change the interface a bit before someone depends on it's current form --- OpenSim/Data/IUserAccountData.cs | 2 +- OpenSim/Data/MySQL/MySQLUserAccountData.cs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/OpenSim/Data/IUserAccountData.cs b/OpenSim/Data/IUserAccountData.cs index 0004a5f..3d0dde4 100644 --- a/OpenSim/Data/IUserAccountData.cs +++ b/OpenSim/Data/IUserAccountData.cs @@ -46,6 +46,6 @@ namespace OpenSim.Data /// public interface IUserAccountData { - bool Store(UserAccountData data); + bool Store(UserAccountData data, UUID principalID, string token); } } diff --git a/OpenSim/Data/MySQL/MySQLUserAccountData.cs b/OpenSim/Data/MySQL/MySQLUserAccountData.cs index 9624d79..e3b5f1d 100644 --- a/OpenSim/Data/MySQL/MySQLUserAccountData.cs +++ b/OpenSim/Data/MySQL/MySQLUserAccountData.cs @@ -40,6 +40,10 @@ namespace OpenSim.Data.MySQL public MySqlUserAccountData(string connectionString, string realm) : base(connectionString, realm, "UserAccount") { + public bool Store(UserAccountData data, UUID principalID, string token) + { + Store(data); + } } } } -- cgit v1.1