aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/EntityTransfer
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-08-13 23:28:28 +0100
committerJustin Clark-Casey (justincc)2010-08-13 23:28:28 +0100
commit8acb401a1455430336c41ac9becb0c16390612f0 (patch)
treee3de4e8562741c8419b4d7bfafae707d84dd5df0 /OpenSim/Region/CoreModules/Framework/EntityTransfer
parentminor: remove mono compiler warnings (diff)
downloadopensim-SC_OLD-8acb401a1455430336c41ac9becb0c16390612f0.zip
opensim-SC_OLD-8acb401a1455430336c41ac9becb0c16390612f0.tar.gz
opensim-SC_OLD-8acb401a1455430336c41ac9becb0c16390612f0.tar.bz2
opensim-SC_OLD-8acb401a1455430336c41ac9becb0c16390612f0.tar.xz
minor: remove mono compiler warnings
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework/EntityTransfer')
-rw-r--r--OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
index ab1cfc3..364d340 100644
--- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
@@ -1,4 +1,4 @@
1/* 1/*
2 * Copyright (c) Contributors, http://opensimulator.org/ 2 * Copyright (c) Contributors, http://opensimulator.org/
3 * See CONTRIBUTORS.TXT for a full list of copyright holders. 3 * See CONTRIBUTORS.TXT for a full list of copyright holders.
4 * 4 *
@@ -1265,18 +1265,18 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
1265 return handles; 1265 return handles;
1266 } 1266 }
1267 1267
1268 private void Dump(string msg, List<ulong> handles) 1268// private void Dump(string msg, List<ulong> handles)
1269 { 1269// {
1270 m_log.InfoFormat("-------------- HANDLE DUMP ({0}) ---------", msg); 1270// m_log.InfoFormat("-------------- HANDLE DUMP ({0}) ---------", msg);
1271 foreach (ulong handle in handles) 1271// foreach (ulong handle in handles)
1272 { 1272// {
1273 uint x, y; 1273// uint x, y;
1274 Utils.LongToUInts(handle, out x, out y); 1274// Utils.LongToUInts(handle, out x, out y);
1275 x = x / Constants.RegionSize; 1275// x = x / Constants.RegionSize;
1276 y = y / Constants.RegionSize; 1276// y = y / Constants.RegionSize;
1277 m_log.InfoFormat("({0}, {1})", x, y); 1277// m_log.InfoFormat("({0}, {1})", x, y);
1278 } 1278// }
1279 } 1279// }
1280 1280
1281 #endregion 1281 #endregion
1282 1282