aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-09-13 22:27:33 +0100
committerJustin Clark-Casey (justincc)2011-09-13 22:27:33 +0100
commit2d62484f11710cbeb066ab6bf02f78ad379ecca3 (patch)
tree458f8770539633212e1ec27191288b80d6ec2e73 /OpenSim/Region/Framework/Interfaces
parentminor: remove redundant grp != null check from AM.UpdateKnownItem() (diff)
downloadopensim-SC_OLD-2d62484f11710cbeb066ab6bf02f78ad379ecca3.zip
opensim-SC_OLD-2d62484f11710cbeb066ab6bf02f78ad379ecca3.tar.gz
opensim-SC_OLD-2d62484f11710cbeb066ab6bf02f78ad379ecca3.tar.bz2
opensim-SC_OLD-2d62484f11710cbeb066ab6bf02f78ad379ecca3.tar.xz
Remove UpdateKnownItem() from IAttachmentsModule.
It's not appropriate for code outside the attachments module to call this.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs
index e6ac6b5..5ffbec8 100644
--- a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs
@@ -138,14 +138,5 @@ namespace OpenSim.Region.Framework.Interfaces
138 /// <param name="sog"></param> 138 /// <param name="sog"></param>
139 /// <param name="pos"></param> 139 /// <param name="pos"></param>
140 void UpdateAttachmentPosition(SceneObjectGroup sog, Vector3 pos); 140 void UpdateAttachmentPosition(SceneObjectGroup sog, Vector3 pos);
141
142 /// <summary>
143 /// Update the user inventory with a changed attachment
144 /// </summary>
145 /// <param name="remoteClient"></param>
146 /// <param name="grp"></param>
147 /// <param name="itemID"></param>
148 /// <param name="agentID"></param>
149 void UpdateKnownItem(IClientAPI remoteClient, SceneObjectGroup grp, UUID itemID, UUID agentID);
150 } 141 }
151} 142}