diff options
author | Jeff Ames | 2010-03-01 23:04:45 +0900 |
---|---|---|
committer | Jeff Ames | 2010-03-01 23:04:45 +0900 |
commit | 780ee4f99146a21f6d70bf9be4528a6dc39cfe14 (patch) | |
tree | f31fa9f54e0c28dbc00aecfde660ecad737f9f73 /OpenSim/Data | |
parent | Formatting cleanup. (diff) | |
download | opensim-SC_OLD-780ee4f99146a21f6d70bf9be4528a6dc39cfe14.zip opensim-SC_OLD-780ee4f99146a21f6d70bf9be4528a6dc39cfe14.tar.gz opensim-SC_OLD-780ee4f99146a21f6d70bf9be4528a6dc39cfe14.tar.bz2 opensim-SC_OLD-780ee4f99146a21f6d70bf9be4528a6dc39cfe14.tar.xz |
Fix a few compiler warnings.
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLGenericTableHandler.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/MySQL/MySQLXInventoryData.cs | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs b/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs index 698bf52..7d3593c 100644 --- a/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs +++ b/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs | |||
@@ -39,10 +39,6 @@ namespace OpenSim.Data.MySQL | |||
39 | { | 39 | { |
40 | public class MySQLGenericTableHandler<T> : MySqlFramework where T: class, new() | 40 | public class MySQLGenericTableHandler<T> : MySqlFramework where T: class, new() |
41 | { | 41 | { |
42 | private static readonly ILog m_log = | ||
43 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
44 | |||
45 | |||
46 | protected Dictionary<string, FieldInfo> m_Fields = | 42 | protected Dictionary<string, FieldInfo> m_Fields = |
47 | new Dictionary<string, FieldInfo>(); | 43 | new Dictionary<string, FieldInfo>(); |
48 | 44 | ||
diff --git a/OpenSim/Data/MySQL/MySQLXInventoryData.cs b/OpenSim/Data/MySQL/MySQLXInventoryData.cs index b5866cb..307a4c7 100644 --- a/OpenSim/Data/MySQL/MySQLXInventoryData.cs +++ b/OpenSim/Data/MySQL/MySQLXInventoryData.cs | |||
@@ -41,9 +41,6 @@ namespace OpenSim.Data.MySQL | |||
41 | /// </summary> | 41 | /// </summary> |
42 | public class MySQLXInventoryData : IXInventoryData | 42 | public class MySQLXInventoryData : IXInventoryData |
43 | { | 43 | { |
44 | private static readonly ILog m_log = LogManager.GetLogger( | ||
45 | MethodBase.GetCurrentMethod().DeclaringType); | ||
46 | |||
47 | private MySQLGenericTableHandler<XInventoryFolder> m_Folders; | 44 | private MySQLGenericTableHandler<XInventoryFolder> m_Folders; |
48 | private MySqlItemHandler m_Items; | 45 | private MySqlItemHandler m_Items; |
49 | 46 | ||