aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-02-13 20:51:22 +0000
committerJustin Clarke Casey2009-02-13 20:51:22 +0000
commitbc9a013f52f6d6c3a5a7447087316822975f9663 (patch)
tree36295aa8e8aa64cc8e7d8403138f83c395f928b3 /OpenSim/Region
parentGuard the values used to set the cursor position in the real time console (diff)
downloadopensim-SC_OLD-bc9a013f52f6d6c3a5a7447087316822975f9663.zip
opensim-SC_OLD-bc9a013f52f6d6c3a5a7447087316822975f9663.tar.gz
opensim-SC_OLD-bc9a013f52f6d6c3a5a7447087316822975f9663.tar.bz2
opensim-SC_OLD-bc9a013f52f6d6c3a5a7447087316822975f9663.tar.xz
* minor: remove mono compiler warnings
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Application/HGOpenSimNode.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Region/Application/HGOpenSimNode.cs b/OpenSim/Region/Application/HGOpenSimNode.cs
index adafa6c..8778acd 100644
--- a/OpenSim/Region/Application/HGOpenSimNode.cs
+++ b/OpenSim/Region/Application/HGOpenSimNode.cs
@@ -48,9 +48,9 @@ namespace OpenSim
48 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 48 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
49 private IHyperlink HGServices = null; 49 private IHyperlink HGServices = null;
50 50
51 private uint m_autoMappingX = 0; 51// private uint m_autoMappingX = 0;
52 private uint m_autoMappingY = 0; 52// private uint m_autoMappingY = 0;
53 private bool m_enableAutoMapping = false; 53// private bool m_enableAutoMapping = false;
54 54
55 public HGOpenSimNode(IConfigSource configSource) : base(configSource) 55 public HGOpenSimNode(IConfigSource configSource) : base(configSource)
56 { 56 {
@@ -150,15 +150,15 @@ namespace OpenSim
150 { 150 {
151 try 151 try
152 { 152 {
153 m_autoMappingX = Convert.ToUInt32(cmdparams[0]); 153// m_autoMappingX = Convert.ToUInt32(cmdparams[0]);
154 m_autoMappingY = Convert.ToUInt32(cmdparams[1]); 154// m_autoMappingY = Convert.ToUInt32(cmdparams[1]);
155 m_enableAutoMapping = true; 155// m_enableAutoMapping = true;
156 } 156 }
157 catch (Exception) 157 catch (Exception)
158 { 158 {
159 m_autoMappingX = 0; 159// m_autoMappingX = 0;
160 m_autoMappingY = 0; 160// m_autoMappingY = 0;
161 m_enableAutoMapping = false; 161// m_enableAutoMapping = false;
162 } 162 }
163 } 163 }
164 } 164 }