diff options
* Optimized usings (the 'LL ate my scripts' commit)
* added some licensing info
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index 48ff40e..f90e766 100644 --- a/OpenSim/Framework/Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs | |||
@@ -25,16 +25,12 @@ | |||
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 System; | ||
29 | using System.Collections; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Text; | 28 | using System.Text; |
32 | using OpenSim.Framework; | 29 | using libsecondlife; |
30 | using libsecondlife.Packets; | ||
33 | using OpenSim.Framework.Data; | 31 | using OpenSim.Framework.Data; |
34 | using OpenSim.Framework.Interfaces; | 32 | using OpenSim.Framework.Interfaces; |
35 | using OpenSim.Framework.Types; | 33 | using OpenSim.Framework.Types; |
36 | using libsecondlife; | ||
37 | using libsecondlife.Packets; | ||
38 | 34 | ||
39 | namespace OpenSim.Framework.Communications | 35 | namespace OpenSim.Framework.Communications |
40 | { | 36 | { |
@@ -54,7 +50,7 @@ namespace OpenSim.Framework.Communications | |||
54 | #region Packet Handlers | 50 | #region Packet Handlers |
55 | public void HandleUUIDNameRequest(LLUUID uuid, IClientAPI remote_client) | 51 | public void HandleUUIDNameRequest(LLUUID uuid, IClientAPI remote_client) |
56 | { | 52 | { |
57 | System.Text.Encoding enc = System.Text.Encoding.ASCII; | 53 | Encoding enc = Encoding.ASCII; |
58 | UserProfileData profileData = this.UserServer.GetUserProfile(uuid); | 54 | UserProfileData profileData = this.UserServer.GetUserProfile(uuid); |
59 | if (profileData != null) | 55 | if (profileData != null) |
60 | { | 56 | { |