Make the SimulatorFeaturesModule nonshared as it ought to be from it's code structure.
parent
2c75be7f6e
commit
995655c445
|
@ -55,7 +55,7 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
/// the normal part of the response in the capability handler.
|
/// the normal part of the response in the capability handler.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
[Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "SimulatorFeaturesModule")]
|
[Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "SimulatorFeaturesModule")]
|
||||||
public class SimulatorFeaturesModule : ISharedRegionModule, ISimulatorFeaturesModule
|
public class SimulatorFeaturesModule : INonSharedRegionModule, ISimulatorFeaturesModule
|
||||||
{
|
{
|
||||||
private static readonly ILog m_log =
|
private static readonly ILog m_log =
|
||||||
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
@ -126,10 +126,6 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
GetGridExtraFeatures(s);
|
GetGridExtraFeatures(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void PostInitialise()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Close() { }
|
public void Close() { }
|
||||||
|
|
||||||
public string Name { get { return "SimulatorFeaturesModule"; } }
|
public string Name { get { return "SimulatorFeaturesModule"; } }
|
||||||
|
|
Loading…
Reference in New Issue