aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLUserData.cs
diff options
context:
space:
mode:
authorSean Dague2008-09-24 21:16:58 +0000
committerSean Dague2008-09-24 21:16:58 +0000
commit2ef1b194fd9bad7650fcbd7c9f59630f9b13a539 (patch)
tree4c31ab539b8cb7f57cd6a5e7a6748f8b2b760eee /OpenSim/Data/MySQL/MySQLUserData.cs
parentexpose MySQLUserData class so that it can be tested (diff)
downloadopensim-SC_OLD-2ef1b194fd9bad7650fcbd7c9f59630f9b13a539.zip
opensim-SC_OLD-2ef1b194fd9bad7650fcbd7c9f59630f9b13a539.tar.gz
opensim-SC_OLD-2ef1b194fd9bad7650fcbd7c9f59630f9b13a539.tar.bz2
opensim-SC_OLD-2ef1b194fd9bad7650fcbd7c9f59630f9b13a539.tar.xz
expose it for real, missed the public keyword
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLUserData.cs b/OpenSim/Data/MySQL/MySQLUserData.cs
index 8248463..c668d56 100644
--- a/OpenSim/Data/MySQL/MySQLUserData.cs
+++ b/OpenSim/Data/MySQL/MySQLUserData.cs
@@ -41,7 +41,7 @@ namespace OpenSim.Data.MySQL
41 /// <summary> 41 /// <summary>
42 /// A database interface class to a user profile storage system 42 /// A database interface class to a user profile storage system
43 /// </summary> 43 /// </summary>
44 class MySQLUserData : UserDataBase 44 public class MySQLUserData : UserDataBase
45 { 45 {
46 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 46 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
47 47