* minor: remove mono compiler warnings

0.6.3-post-fixes
Justin Clarke Casey 2009-02-13 20:51:22 +00:00
parent a8f3d625cb
commit bc9a013f52
1 changed files with 9 additions and 9 deletions

View File

@ -48,9 +48,9 @@ namespace OpenSim
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private IHyperlink HGServices = null; private IHyperlink HGServices = null;
private uint m_autoMappingX = 0; // private uint m_autoMappingX = 0;
private uint m_autoMappingY = 0; // private uint m_autoMappingY = 0;
private bool m_enableAutoMapping = false; // private bool m_enableAutoMapping = false;
public HGOpenSimNode(IConfigSource configSource) : base(configSource) public HGOpenSimNode(IConfigSource configSource) : base(configSource)
{ {
@ -150,15 +150,15 @@ namespace OpenSim
{ {
try try
{ {
m_autoMappingX = Convert.ToUInt32(cmdparams[0]); // m_autoMappingX = Convert.ToUInt32(cmdparams[0]);
m_autoMappingY = Convert.ToUInt32(cmdparams[1]); // m_autoMappingY = Convert.ToUInt32(cmdparams[1]);
m_enableAutoMapping = true; // m_enableAutoMapping = true;
} }
catch (Exception) catch (Exception)
{ {
m_autoMappingX = 0; // m_autoMappingX = 0;
m_autoMappingY = 0; // m_autoMappingY = 0;
m_enableAutoMapping = false; // m_enableAutoMapping = false;
} }
} }
} }