diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/AvatarAppearance.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/AvatarAppearance.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs b/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs index 750129b..8f29507 100644 --- a/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs +++ b/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs | |||
@@ -26,11 +26,11 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Runtime.Serialization; | ||
30 | using System.Security.Permissions; | ||
29 | using libsecondlife; | 31 | using libsecondlife; |
30 | using libsecondlife.Packets; | 32 | using libsecondlife.Packets; |
31 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
32 | using System.Runtime.Serialization; | ||
33 | using System.Security.Permissions; | ||
34 | 34 | ||
35 | namespace OpenSim.Region.Environment.Scenes | 35 | namespace OpenSim.Region.Environment.Scenes |
36 | { | 36 | { |
@@ -159,7 +159,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
159 | 159 | ||
160 | if (info == null) | 160 | if (info == null) |
161 | { | 161 | { |
162 | throw new System.ArgumentNullException("info"); | 162 | throw new ArgumentNullException("info"); |
163 | } | 163 | } |
164 | 164 | ||
165 | m_scenePresenceID = new LLUUID((Guid)info.GetValue("m_scenePresenceID", typeof(Guid))); | 165 | m_scenePresenceID = new LLUUID((Guid)info.GetValue("m_scenePresenceID", typeof(Guid))); |
@@ -182,7 +182,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
182 | { | 182 | { |
183 | if (info == null) | 183 | if (info == null) |
184 | { | 184 | { |
185 | throw new System.ArgumentNullException("info"); | 185 | throw new ArgumentNullException("info"); |
186 | } | 186 | } |
187 | 187 | ||
188 | info.AddValue("m_scenePresenceID", m_scenePresenceID.UUID); | 188 | info.AddValue("m_scenePresenceID", m_scenePresenceID.UUID); |