Removed redundant SceneContents property from Scene. It's the same as SceneGraph property.
parent
3bead3eb50
commit
7c8bfac11b
|
@ -135,7 +135,7 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
ItemUpdatedCall = m_Scene.CapsUpdateInventoryItemAsset;
|
ItemUpdatedCall = m_Scene.CapsUpdateInventoryItemAsset;
|
||||||
TaskScriptUpdatedCall = m_Scene.CapsUpdateTaskInventoryScriptAsset;
|
TaskScriptUpdatedCall = m_Scene.CapsUpdateTaskInventoryScriptAsset;
|
||||||
CAPSFetchInventoryDescendents = m_Scene.HandleFetchInventoryDescendentsCAPS;
|
CAPSFetchInventoryDescendents = m_Scene.HandleFetchInventoryDescendentsCAPS;
|
||||||
GetClient = m_Scene.SceneContents.GetControllingClient;
|
GetClient = m_Scene.SceneGraph.GetControllingClient;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -470,11 +470,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
get { return m_authenticateHandler; }
|
get { return m_authenticateHandler; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public SceneGraph SceneContents
|
|
||||||
{
|
|
||||||
get { return m_sceneGraph; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool UseBackup
|
public bool UseBackup
|
||||||
{
|
{
|
||||||
get { return m_useBackup; }
|
get { return m_useBackup; }
|
||||||
|
|
Loading…
Reference in New Issue