From 67e12b95ea7b68f4904a7484d77ecfd787d16d0c Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Tue, 30 Oct 2007 09:05:31 +0000 Subject: * Optimized usings * Shortened type references * Removed redundant 'this' qualifier --- OpenSim/Region/Communications/Local/LocalUserServices.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Communications/Local/LocalUserServices.cs') diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index 1dede97..a7687c7 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs @@ -27,8 +27,8 @@ */ using System; -using OpenSim.Framework.Communications; using OpenSim.Framework; +using OpenSim.Framework.Communications; using OpenSim.Framework.UserManagement; namespace OpenSim.Region.Communications.Local @@ -41,7 +41,8 @@ namespace OpenSim.Region.Communications.Local private IInventoryServices m_inventoryService; - public LocalUserServices(NetworkServersInfo serversInfo, uint defaultHomeLocX, uint defaultHomeLocY, IInventoryServices inventoryService) + public LocalUserServices(NetworkServersInfo serversInfo, uint defaultHomeLocX, uint defaultHomeLocY, + IInventoryServices inventoryService) { m_serversInfo = serversInfo; @@ -49,7 +50,6 @@ namespace OpenSim.Region.Communications.Local m_defaultHomeY = defaultHomeLocY; m_inventoryService = inventoryService; - } public override UserProfileData SetupMasterUser(string firstName, string lastName) @@ -82,4 +82,4 @@ namespace OpenSim.Region.Communications.Local return profile; } } -} +} \ No newline at end of file -- cgit v1.1