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/DataRequestHandler.cs | |
parent | *Land/Parcel upates are now correct with a significant movement by the Client (diff) | |
download | opensim-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 '')
-rw-r--r-- | OpenSim/Region/DataSnapshot/DataRequestHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/DataSnapshot/DataRequestHandler.cs b/OpenSim/Region/DataSnapshot/DataRequestHandler.cs index 7e096df..2b18871 100644 --- a/OpenSim/Region/DataSnapshot/DataRequestHandler.cs +++ b/OpenSim/Region/DataSnapshot/DataRequestHandler.cs | |||
@@ -38,7 +38,7 @@ namespace OpenSim.Region.DataSnapshot | |||
38 | { | 38 | { |
39 | private Scene m_scene = null; | 39 | private Scene m_scene = null; |
40 | private DataSnapshotManager m_externalData = null; | 40 | private DataSnapshotManager m_externalData = null; |
41 | private ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 41 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
42 | 42 | ||
43 | public DataRequestHandler(Scene scene, DataSnapshotManager externalData) | 43 | public DataRequestHandler(Scene scene, DataSnapshotManager externalData) |
44 | { | 44 | { |