diff options
author | Adam Frisby | 2008-04-21 07:09:17 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-21 07:09:17 +0000 |
commit | fef3b3689492dea63693c964bcdbec9f5137eb5e (patch) | |
tree | 7791eef001d85d3e1de863a68f26ff9434d062ca /OpenSim/Region/Environment/Scenes/AvatarAppearance.cs | |
parent | * Terrain Module code has been reformatted to comply with guidelines. (diff) | |
download | opensim-SC-fef3b3689492dea63693c964bcdbec9f5137eb5e.zip opensim-SC-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.gz opensim-SC-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.bz2 opensim-SC-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.xz |
* Optimised using statements and namespace references across entire project (this took a while to run).
Diffstat (limited to '')
-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); |