diff options
author | lbsa71 | 2007-10-30 09:05:31 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-30 09:05:31 +0000 |
commit | 67e12b95ea7b68f4904a7484d77ecfd787d16d0c (patch) | |
tree | 20b00d24c8a7617017960432ec044852e3ad5fa9 /OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs | |
parent | * Deleted .user file (diff) | |
download | opensim-SC-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.zip opensim-SC-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.gz opensim-SC-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.bz2 opensim-SC-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.xz |
* Optimized usings
* Shortened type references
* Removed redundant 'this' qualifier
Diffstat (limited to 'OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs')
-rw-r--r-- | OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs b/OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs index 456d838..4bb0638 100644 --- a/OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs +++ b/OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs | |||
@@ -1,6 +1,3 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | 1 | using libsecondlife; |
5 | using Nini.Config; | 2 | using Nini.Config; |
6 | using OpenSim.Framework; | 3 | using OpenSim.Framework; |
@@ -11,7 +8,8 @@ namespace OpenSim.Region.Environment.Modules | |||
11 | { | 8 | { |
12 | public class AvatarFactoryModule : IAvatarFactory | 9 | public class AvatarFactoryModule : IAvatarFactory |
13 | { | 10 | { |
14 | public bool TryGetIntialAvatarAppearance(LLUUID avatarId, out AvatarWearable[] wearables, out byte[] visualParams) | 11 | public bool TryGetIntialAvatarAppearance(LLUUID avatarId, out AvatarWearable[] wearables, |
12 | out byte[] visualParams) | ||
15 | { | 13 | { |
16 | GetDefaultAvatarAppearance(out wearables, out visualParams); | 14 | GetDefaultAvatarAppearance(out wearables, out visualParams); |
17 | return true; | 15 | return true; |
@@ -51,7 +49,4 @@ namespace OpenSim.Region.Environment.Modules | |||
51 | wearables = AvatarWearable.DefaultWearables; | 49 | wearables = AvatarWearable.DefaultWearables; |
52 | } | 50 | } |
53 | } | 51 | } |
54 | 52 | } \ No newline at end of file | |
55 | |||
56 | |||
57 | } | ||