aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLUserAccountData.cs
diff options
context:
space:
mode:
authorMelanie2009-12-29 20:14:26 +0000
committerMelanie2009-12-29 20:14:26 +0000
commit8631cea2154f0ded2e3fa27349045650ce6f5998 (patch)
treee6bddc421b88506b946a86b5749c5277556a60d3 /OpenSim/Data/MySQL/MySQLUserAccountData.cs
parentGive the new user tables the once-over. Strip the current set of methods (diff)
downloadopensim-SC_OLD-8631cea2154f0ded2e3fa27349045650ce6f5998.zip
opensim-SC_OLD-8631cea2154f0ded2e3fa27349045650ce6f5998.tar.gz
opensim-SC_OLD-8631cea2154f0ded2e3fa27349045650ce6f5998.tar.bz2
opensim-SC_OLD-8631cea2154f0ded2e3fa27349045650ce6f5998.tar.xz
Change the interface a bit before someone depends on it's current form
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLUserAccountData.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserAccountData.cs4
1 files changed, 4 insertions, 0 deletions
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
40 public MySqlUserAccountData(string connectionString, string realm) 40 public MySqlUserAccountData(string connectionString, string realm)
41 : base(connectionString, realm, "UserAccount") 41 : base(connectionString, realm, "UserAccount")
42 { 42 {
43 public bool Store(UserAccountData data, UUID principalID, string token)
44 {
45 Store(data);
46 }
43 } 47 }
44 } 48 }
45} 49}