diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteAuthenticationData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteAvatarData.cs | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteAuthenticationData.cs b/OpenSim/Data/SQLite/SQLiteAuthenticationData.cs index c54bd74..c3b65bb 100644 --- a/OpenSim/Data/SQLite/SQLiteAuthenticationData.cs +++ b/OpenSim/Data/SQLite/SQLiteAuthenticationData.cs | |||
@@ -33,7 +33,7 @@ using System.Reflection; | |||
33 | using log4net; | 33 | using log4net; |
34 | using OpenMetaverse; | 34 | using OpenMetaverse; |
35 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
36 | using log4net; | 36 | |
37 | #if CSharpSqlite | 37 | #if CSharpSqlite |
38 | using Community.CsharpSqlite.Sqlite; | 38 | using Community.CsharpSqlite.Sqlite; |
39 | #else | 39 | #else |
@@ -49,7 +49,6 @@ namespace OpenSim.Data.SQLite | |||
49 | private string m_Realm; | 49 | private string m_Realm; |
50 | private List<string> m_ColumnNames; | 50 | private List<string> m_ColumnNames; |
51 | private int m_LastExpire; | 51 | private int m_LastExpire; |
52 | private string m_connectionString; | ||
53 | 52 | ||
54 | protected static SqliteConnection m_Connection; | 53 | protected static SqliteConnection m_Connection; |
55 | private static bool m_initialized = false; | 54 | private static bool m_initialized = false; |
@@ -58,7 +57,6 @@ namespace OpenSim.Data.SQLite | |||
58 | : base(connectionString) | 57 | : base(connectionString) |
59 | { | 58 | { |
60 | m_Realm = realm; | 59 | m_Realm = realm; |
61 | m_connectionString = connectionString; | ||
62 | 60 | ||
63 | if (!m_initialized) | 61 | if (!m_initialized) |
64 | { | 62 | { |
diff --git a/OpenSim/Data/SQLite/SQLiteAvatarData.cs b/OpenSim/Data/SQLite/SQLiteAvatarData.cs index 60a1a3e..faf34da 100644 --- a/OpenSim/Data/SQLite/SQLiteAvatarData.cs +++ b/OpenSim/Data/SQLite/SQLiteAvatarData.cs | |||
@@ -47,7 +47,7 @@ namespace OpenSim.Data.SQLite | |||
47 | public class SQLiteAvatarData : SQLiteGenericTableHandler<AvatarBaseData>, | 47 | public class SQLiteAvatarData : SQLiteGenericTableHandler<AvatarBaseData>, |
48 | IAvatarData | 48 | IAvatarData |
49 | { | 49 | { |
50 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 50 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
51 | 51 | ||
52 | public SQLiteAvatarData(string connectionString, string realm) : | 52 | public SQLiteAvatarData(string connectionString, string realm) : |
53 | base(connectionString, realm, "Avatar") | 53 | base(connectionString, realm, "Avatar") |