diff options
author | Justin Clarke Casey | 2009-07-15 20:49:58 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-07-15 20:49:58 +0000 |
commit | 5815162d7ef1df861de082cee9e99cec14805572 (patch) | |
tree | 1ea8e534822d108da56788b42f07d021e515d22a /OpenSim/Region/OptionalModules/Scripting/Minimodule/SPAvatarAttachment.cs | |
parent | * Change server prompt from B.U.S.T to R.O.B.U.S.T, as per mailing list (diff) | |
download | opensim-SC_OLD-5815162d7ef1df861de082cee9e99cec14805572.zip opensim-SC_OLD-5815162d7ef1df861de082cee9e99cec14805572.tar.gz opensim-SC_OLD-5815162d7ef1df861de082cee9e99cec14805572.tar.bz2 opensim-SC_OLD-5815162d7ef1df861de082cee9e99cec14805572.tar.xz |
minor: remove some mono compiler warnings
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/SPAvatarAttachment.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/SPAvatarAttachment.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SPAvatarAttachment.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SPAvatarAttachment.cs index 971119f..9b684fe 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SPAvatarAttachment.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SPAvatarAttachment.cs | |||
@@ -35,17 +35,17 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
35 | public class SPAvatarAttachment : IAvatarAttachment | 35 | public class SPAvatarAttachment : IAvatarAttachment |
36 | { | 36 | { |
37 | private readonly Scene m_rootScene; | 37 | private readonly Scene m_rootScene; |
38 | private readonly IAvatar m_parent; | 38 | //private readonly IAvatar m_parent; |
39 | private readonly int m_location; | 39 | private readonly int m_location; |
40 | private readonly UUID m_itemId; | 40 | //private readonly UUID m_itemId; |
41 | private readonly UUID m_assetId; | 41 | private readonly UUID m_assetId; |
42 | 42 | ||
43 | public SPAvatarAttachment(Scene rootScene, IAvatar self, int location, UUID itemId, UUID assetId) | 43 | public SPAvatarAttachment(Scene rootScene, IAvatar self, int location, UUID itemId, UUID assetId) |
44 | { | 44 | { |
45 | m_rootScene = rootScene; | 45 | m_rootScene = rootScene; |
46 | m_parent = self; | 46 | //m_parent = self; |
47 | m_location = location; | 47 | m_location = location; |
48 | m_itemId = itemId; | 48 | //m_itemId = itemId; |
49 | m_assetId = assetId; | 49 | m_assetId = assetId; |
50 | } | 50 | } |
51 | 51 | ||