From bea7d4d81ad7a75706305be6c8ca06f8dc6e6eca Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Tue, 19 Aug 2008 02:59:27 +0000 Subject: Update svn properties, formatting cleanup. --- OpenSim/Framework/AvatarAppearance.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Framework/AvatarAppearance.cs') diff --git a/OpenSim/Framework/AvatarAppearance.cs b/OpenSim/Framework/AvatarAppearance.cs index 67e26b1..3459504 100644 --- a/OpenSim/Framework/AvatarAppearance.cs +++ b/OpenSim/Framework/AvatarAppearance.cs @@ -363,7 +363,7 @@ namespace OpenSim.Framework h["skirt_asset"] = SkirtAsset.ToString(); string attachments = GetAttachmentsString(); - if(attachments != String.Empty) + if (attachments != String.Empty) h["attachments"] = attachments; return h; @@ -411,7 +411,7 @@ namespace OpenSim.Framework SkirtItem = new LLUUID((string)h["skirt_item"]); SkirtAsset = new LLUUID((string)h["skirt_asset"]); - if(h.ContainsKey("attachments")) + if (h.ContainsKey("attachments")) { SetAttachmentsString(h["attachments"].ToString()); } @@ -441,7 +441,7 @@ namespace OpenSim.Framework { m_attachments.Clear(); - if(data == null) + if (data == null) return; foreach (DictionaryEntry e in data) @@ -468,7 +468,7 @@ namespace OpenSim.Framework public Hashtable GetAttachments() { - if(m_attachments.Count == 0) + if (m_attachments.Count == 0) return null; Hashtable ret = new Hashtable(); -- cgit v1.1