aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut
diff options
context:
space:
mode:
authorUbitUmarov2016-07-30 22:26:31 +0100
committerUbitUmarov2016-07-30 22:26:31 +0100
commitf4385dcd926450535367c302829197c3a16f3d84 (patch)
treec4aa6c06f4d13110a3f1e297aebf3a56303505e6 /OpenSim/Region/CoreModules/ServiceConnectorsOut
parent test jenkins for the null object (diff)
downloadopensim-SC_OLD-f4385dcd926450535367c302829197c3a16f3d84.zip
opensim-SC_OLD-f4385dcd926450535367c302829197c3a16f3d84.tar.gz
opensim-SC_OLD-f4385dcd926450535367c302829197c3a16f3d84.tar.bz2
opensim-SC_OLD-f4385dcd926450535367c302829197c3a16f3d84.tar.xz
do not set m_RegionInfoCache null on each LocalGridServicesConnector construction
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsOut')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs
index 55f4380..70dc7a3 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs
@@ -51,7 +51,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid
51 private static string LogHeader = "[LOCAL GRID SERVICE CONNECTOR]"; 51 private static string LogHeader = "[LOCAL GRID SERVICE CONNECTOR]";
52 52
53 private IGridService m_GridService; 53 private IGridService m_GridService;
54 static private RegionInfoCache m_RegionInfoCache = null; 54 static private RegionInfoCache m_RegionInfoCache;
55 55
56 private bool m_Enabled; 56 private bool m_Enabled;
57 57