aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
diff options
context:
space:
mode:
authorSean Dague2008-05-09 18:57:19 +0000
committerSean Dague2008-05-09 18:57:19 +0000
commit835e44b9875123adf97b8b002c5d43f0b5deaaf4 (patch)
tree68255d76d7665877b3de82be3e95468902b599e6 /OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
parent*Land/Parcel upates are now correct with a significant movement by the Client (diff)
downloadopensim-SC_OLD-835e44b9875123adf97b8b002c5d43f0b5deaaf4.zip
opensim-SC_OLD-835e44b9875123adf97b8b002c5d43f0b5deaaf4.tar.gz
opensim-SC_OLD-835e44b9875123adf97b8b002c5d43f0b5deaaf4.tar.bz2
opensim-SC_OLD-835e44b9875123adf97b8b002c5d43f0b5deaaf4.tar.xz
m_logs always need to be private static readonly otherwise we
get close errors.
Diffstat (limited to 'OpenSim/Region/DataSnapshot/ObjectSnapshot.cs')
-rw-r--r--OpenSim/Region/DataSnapshot/ObjectSnapshot.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
index c295902..b2ef6d3 100644
--- a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
+++ b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
@@ -37,7 +37,7 @@ namespace OpenSim.Region.DataSnapshot
37 { 37 {
38 private Scene m_scene = null; 38 private Scene m_scene = null;
39 private DataSnapshotManager m_parent = null; 39 private DataSnapshotManager m_parent = null;
40 private ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 40 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
41 41
42 public void Initialize(Scene scene, DataSnapshotManager parent) 42 public void Initialize(Scene scene, DataSnapshotManager parent)
43 { 43 {