minor: remove mono compiler warnings
parent
f5ec332474
commit
3d095e84d6
|
@ -33,7 +33,7 @@ using System.Reflection;
|
||||||
using log4net;
|
using log4net;
|
||||||
using OpenMetaverse;
|
using OpenMetaverse;
|
||||||
using OpenSim.Framework;
|
using OpenSim.Framework;
|
||||||
using log4net;
|
|
||||||
#if CSharpSqlite
|
#if CSharpSqlite
|
||||||
using Community.CsharpSqlite.Sqlite;
|
using Community.CsharpSqlite.Sqlite;
|
||||||
#else
|
#else
|
||||||
|
@ -49,7 +49,6 @@ namespace OpenSim.Data.SQLite
|
||||||
private string m_Realm;
|
private string m_Realm;
|
||||||
private List<string> m_ColumnNames;
|
private List<string> m_ColumnNames;
|
||||||
private int m_LastExpire;
|
private int m_LastExpire;
|
||||||
private string m_connectionString;
|
|
||||||
|
|
||||||
protected static SqliteConnection m_Connection;
|
protected static SqliteConnection m_Connection;
|
||||||
private static bool m_initialized = false;
|
private static bool m_initialized = false;
|
||||||
|
@ -58,7 +57,6 @@ namespace OpenSim.Data.SQLite
|
||||||
: base(connectionString)
|
: base(connectionString)
|
||||||
{
|
{
|
||||||
m_Realm = realm;
|
m_Realm = realm;
|
||||||
m_connectionString = connectionString;
|
|
||||||
|
|
||||||
if (!m_initialized)
|
if (!m_initialized)
|
||||||
{
|
{
|
||||||
|
|
|
@ -47,7 +47,7 @@ namespace OpenSim.Data.SQLite
|
||||||
public class SQLiteAvatarData : SQLiteGenericTableHandler<AvatarBaseData>,
|
public class SQLiteAvatarData : SQLiteGenericTableHandler<AvatarBaseData>,
|
||||||
IAvatarData
|
IAvatarData
|
||||||
{
|
{
|
||||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
||||||
public SQLiteAvatarData(string connectionString, string realm) :
|
public SQLiteAvatarData(string connectionString, string realm) :
|
||||||
base(connectionString, realm, "Avatar")
|
base(connectionString, realm, "Avatar")
|
||||||
|
|
|
@ -460,7 +460,7 @@ namespace OpenSim.Framework
|
||||||
{
|
{
|
||||||
info["state"] = OSD.FromString(AttachmentObjectStates[i++]);
|
info["state"] = OSD.FromString(AttachmentObjectStates[i++]);
|
||||||
}
|
}
|
||||||
catch (IndexOutOfRangeException e)
|
catch (IndexOutOfRangeException)
|
||||||
{
|
{
|
||||||
m_log.WarnFormat("[CHILD AGENT DATA]: scripts list is shorter than object list.");
|
m_log.WarnFormat("[CHILD AGENT DATA]: scripts list is shorter than object list.");
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ namespace OpenSim.Framework
|
||||||
{
|
{
|
||||||
public class PriorityQueue
|
public class PriorityQueue
|
||||||
{
|
{
|
||||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
||||||
public delegate bool UpdatePriorityHandler(ref uint priority, ISceneEntity entity);
|
public delegate bool UpdatePriorityHandler(ref uint priority, ISceneEntity entity);
|
||||||
|
|
||||||
|
|
|
@ -189,7 +189,7 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
|
||||||
int maxNameLength = 18;
|
int maxNameLength = 18;
|
||||||
int maxRegionNameLength = 14;
|
int maxRegionNameLength = 14;
|
||||||
int maxTypeLength = 4;
|
int maxTypeLength = 4;
|
||||||
int totalInfoFieldsLength = maxNameLength + columnPadding + maxRegionNameLength + columnPadding + maxTypeLength + columnPadding;
|
// int totalInfoFieldsLength = maxNameLength + columnPadding + maxRegionNameLength + columnPadding + maxTypeLength + columnPadding;
|
||||||
|
|
||||||
report.Append(GetColumnEntry("User", maxNameLength, columnPadding));
|
report.Append(GetColumnEntry("User", maxNameLength, columnPadding));
|
||||||
report.Append(GetColumnEntry("Region", maxRegionNameLength, columnPadding));
|
report.Append(GetColumnEntry("Region", maxRegionNameLength, columnPadding));
|
||||||
|
|
Loading…
Reference in New Issue