Make the SimulatorFeaturesModule nonshared as it ought to be from it's code structure.

LSLKeyTest
Melanie Thielker 2016-04-27 00:48:56 +02:00
parent 2c75be7f6e
commit 995655c445
1 changed files with 1 additions and 5 deletions

View File

@ -55,7 +55,7 @@ namespace OpenSim.Region.ClientStack.Linden
/// the normal part of the response in the capability handler.
/// </remarks>
[Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "SimulatorFeaturesModule")]
public class SimulatorFeaturesModule : ISharedRegionModule, ISimulatorFeaturesModule
public class SimulatorFeaturesModule : INonSharedRegionModule, ISimulatorFeaturesModule
{
private static readonly ILog m_log =
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
@ -126,10 +126,6 @@ namespace OpenSim.Region.ClientStack.Linden
GetGridExtraFeatures(s);
}
public void PostInitialise()
{
}
public void Close() { }
public string Name { get { return "SimulatorFeaturesModule"; } }