diff options
author | Melanie Thielker | 2016-04-27 00:48:56 +0200 |
---|---|---|
committer | Melanie Thielker | 2016-04-27 00:48:56 +0200 |
commit | 995655c445ebc32c8c20d8101259d7f5ccb95477 (patch) | |
tree | e7efc42076382465193a0731901f21e309b8b8a6 /OpenSim/Region/ClientStack | |
parent | From information given my Mandarinka Tasty, add firing the detach event even ... (diff) | |
download | opensim-SC_OLD-995655c445ebc32c8c20d8101259d7f5ccb95477.zip opensim-SC_OLD-995655c445ebc32c8c20d8101259d7f5ccb95477.tar.gz opensim-SC_OLD-995655c445ebc32c8c20d8101259d7f5ccb95477.tar.bz2 opensim-SC_OLD-995655c445ebc32c8c20d8101259d7f5ccb95477.tar.xz |
Make the SimulatorFeaturesModule nonshared as it ought to be from it's code structure.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs index d07f66e..f7259a6 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs | |||
@@ -55,7 +55,7 @@ namespace OpenSim.Region.ClientStack.Linden | |||
55 | /// the normal part of the response in the capability handler. | 55 | /// the normal part of the response in the capability handler. |
56 | /// </remarks> | 56 | /// </remarks> |
57 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "SimulatorFeaturesModule")] | 57 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "SimulatorFeaturesModule")] |
58 | public class SimulatorFeaturesModule : ISharedRegionModule, ISimulatorFeaturesModule | 58 | public class SimulatorFeaturesModule : INonSharedRegionModule, ISimulatorFeaturesModule |
59 | { | 59 | { |
60 | private static readonly ILog m_log = | 60 | private static readonly ILog m_log = |
61 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 61 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
@@ -126,10 +126,6 @@ namespace OpenSim.Region.ClientStack.Linden | |||
126 | GetGridExtraFeatures(s); | 126 | GetGridExtraFeatures(s); |
127 | } | 127 | } |
128 | 128 | ||
129 | public void PostInitialise() | ||
130 | { | ||
131 | } | ||
132 | |||
133 | public void Close() { } | 129 | public void Close() { } |
134 | 130 | ||
135 | public string Name { get { return "SimulatorFeaturesModule"; } } | 131 | public string Name { get { return "SimulatorFeaturesModule"; } } |