aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-12 21:14:27 +0000
committerJustin Clarke Casey2008-12-12 21:14:27 +0000
commit96ea54409f605804dd2d09f91743e94f85012e1c (patch)
tree8f61e86c03568b46fb601f2c461e80def7821106 /OpenSim
parentStarted to move xfer file transfer code to the LLClientStack, rather than hav... (diff)
downloadopensim-SC_OLD-96ea54409f605804dd2d09f91743e94f85012e1c.zip
opensim-SC_OLD-96ea54409f605804dd2d09f91743e94f85012e1c.tar.gz
opensim-SC_OLD-96ea54409f605804dd2d09f91743e94f85012e1c.tar.bz2
opensim-SC_OLD-96ea54409f605804dd2d09f91743e94f85012e1c.tar.xz
* minor: remove mono compiler warning
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Environment/Scenes/EntityManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EntityManager.cs b/OpenSim/Region/Environment/Scenes/EntityManager.cs
index e7592fe..01f7a0f 100644
--- a/OpenSim/Region/Environment/Scenes/EntityManager.cs
+++ b/OpenSim/Region/Environment/Scenes/EntityManager.cs
@@ -40,7 +40,7 @@ namespace OpenSim.Region.Environment.Scenes
40 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 40 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
41 private readonly Dictionary<UUID,EntityBase> m_eb_uuid = new Dictionary<UUID, EntityBase>(); 41 private readonly Dictionary<UUID,EntityBase> m_eb_uuid = new Dictionary<UUID, EntityBase>();
42 private readonly Dictionary<uint, EntityBase> m_eb_localID = new Dictionary<uint, EntityBase>(); 42 private readonly Dictionary<uint, EntityBase> m_eb_localID = new Dictionary<uint, EntityBase>();
43 private readonly Dictionary<UUID, ScenePresence> m_pres_uuid = new Dictionary<UUID, ScenePresence>(); 43 //private readonly Dictionary<UUID, ScenePresence> m_pres_uuid = new Dictionary<UUID, ScenePresence>();
44 private readonly Object m_lock = new Object(); 44 private readonly Object m_lock = new Object();
45 45
46 [Obsolete("Use Add() instead.")] 46 [Obsolete("Use Add() instead.")]