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/Framework/AvatarWearable.cs | |
parent | * Terrain Module code has been reformatted to comply with guidelines. (diff) | |
download | opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.zip opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.gz opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.bz2 opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.xz |
* Optimised using statements and namespace references across entire project (this took a while to run).
Diffstat (limited to 'OpenSim/Framework/AvatarWearable.cs')
-rw-r--r-- | OpenSim/Framework/AvatarWearable.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/AvatarWearable.cs b/OpenSim/Framework/AvatarWearable.cs index b800030..cd5f7f6 100644 --- a/OpenSim/Framework/AvatarWearable.cs +++ b/OpenSim/Framework/AvatarWearable.cs | |||
@@ -25,10 +25,10 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using libsecondlife; | ||
29 | using System; | 28 | using System; |
30 | using System.Runtime.Serialization; | 29 | using System.Runtime.Serialization; |
31 | using System.Security.Permissions; | 30 | using System.Security.Permissions; |
31 | using libsecondlife; | ||
32 | 32 | ||
33 | namespace OpenSim.Framework | 33 | namespace OpenSim.Framework |
34 | { | 34 | { |
@@ -77,7 +77,7 @@ namespace OpenSim.Framework | |||
77 | //System.Console.WriteLine("AvatarWearable Deserialize BGN"); | 77 | //System.Console.WriteLine("AvatarWearable Deserialize BGN"); |
78 | if (info == null) | 78 | if (info == null) |
79 | { | 79 | { |
80 | throw new System.ArgumentNullException("info"); | 80 | throw new ArgumentNullException("info"); |
81 | } | 81 | } |
82 | 82 | ||
83 | AssetID = new LLUUID((Guid)info.GetValue("AssetID", typeof(Guid))); | 83 | AssetID = new LLUUID((Guid)info.GetValue("AssetID", typeof(Guid))); |
@@ -93,7 +93,7 @@ namespace OpenSim.Framework | |||
93 | { | 93 | { |
94 | if (info == null) | 94 | if (info == null) |
95 | { | 95 | { |
96 | throw new System.ArgumentNullException("info"); | 96 | throw new ArgumentNullException("info"); |
97 | } | 97 | } |
98 | 98 | ||
99 | info.AddValue("AssetID", AssetID.UUID); | 99 | info.AddValue("AssetID", AssetID.UUID); |