diff options
author | Sean Dague | 2008-05-09 18:57:19 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-09 18:57:19 +0000 |
commit | 835e44b9875123adf97b8b002c5d43f0b5deaaf4 (patch) | |
tree | 68255d76d7665877b3de82be3e95468902b599e6 /OpenSim/Region/DataSnapshot/LandSnapshot.cs | |
parent | *Land/Parcel upates are now correct with a significant movement by the Client (diff) | |
download | opensim-SC-835e44b9875123adf97b8b002c5d43f0b5deaaf4.zip opensim-SC-835e44b9875123adf97b8b002c5d43f0b5deaaf4.tar.gz opensim-SC-835e44b9875123adf97b8b002c5d43f0b5deaaf4.tar.bz2 opensim-SC-835e44b9875123adf97b8b002c5d43f0b5deaaf4.tar.xz |
m_logs always need to be private static readonly otherwise we
get close errors.
Diffstat (limited to 'OpenSim/Region/DataSnapshot/LandSnapshot.cs')
-rw-r--r-- | OpenSim/Region/DataSnapshot/LandSnapshot.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/DataSnapshot/LandSnapshot.cs b/OpenSim/Region/DataSnapshot/LandSnapshot.cs index 6198e1c..b60232b 100644 --- a/OpenSim/Region/DataSnapshot/LandSnapshot.cs +++ b/OpenSim/Region/DataSnapshot/LandSnapshot.cs | |||
@@ -45,7 +45,7 @@ namespace OpenSim.Region.DataSnapshot | |||
45 | private Scene m_scene = null; | 45 | private Scene m_scene = null; |
46 | private DataSnapshotManager m_parent = null; | 46 | private DataSnapshotManager m_parent = null; |
47 | //private Dictionary<int, Land> m_landIndexed = new Dictionary<int, Land>(); | 47 | //private Dictionary<int, Land> m_landIndexed = new Dictionary<int, Land>(); |
48 | private ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 48 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
49 | 49 | ||
50 | #region Dead code | 50 | #region Dead code |
51 | 51 | ||