Remove UpdateKnownItem() from IAttachmentsModule.

It's not appropriate for code outside the attachments module to call this.
remove-scene-viewer
Justin Clark-Casey (justincc) 2011-09-13 22:27:33 +01:00
parent 62b3e74bc5
commit 2d62484f11
2 changed files with 1 additions and 10 deletions

View File

@ -705,7 +705,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments
/// <param name="grp"></param>
/// <param name="itemID"></param>
/// <param name="agentID"></param>
public void UpdateKnownItem(IClientAPI remoteClient, SceneObjectGroup grp, UUID itemID, UUID agentID)
private void UpdateKnownItem(IClientAPI remoteClient, SceneObjectGroup grp, UUID itemID, UUID agentID)
{
if (grp.HasGroupChanged || grp.ContainsScripts())
{

View File

@ -138,14 +138,5 @@ namespace OpenSim.Region.Framework.Interfaces
/// <param name="sog"></param>
/// <param name="pos"></param>
void UpdateAttachmentPosition(SceneObjectGroup sog, Vector3 pos);
/// <summary>
/// Update the user inventory with a changed attachment
/// </summary>
/// <param name="remoteClient"></param>
/// <param name="grp"></param>
/// <param name="itemID"></param>
/// <param name="agentID"></param>
void UpdateKnownItem(IClientAPI remoteClient, SceneObjectGroup grp, UUID itemID, UUID agentID);
}
}