aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AvatarWearable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/AvatarWearable.cs')
-rw-r--r--OpenSim/Framework/AvatarWearable.cs6
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
28using libsecondlife;
29using System; 28using System;
30using System.Runtime.Serialization; 29using System.Runtime.Serialization;
31using System.Security.Permissions; 30using System.Security.Permissions;
31using libsecondlife;
32 32
33namespace OpenSim.Framework 33namespace 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);