From 7b49c711e93632276ee0f01a97ad67e9988f773a Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 28 Nov 2008 15:40:44 +0000 Subject: * minor: Eliminate unused paramter in LocalUserServices constructors --- OpenSim/Region/Communications/Local/LocalUserServices.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 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 e0c9c83..f4fe686 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs @@ -40,17 +40,13 @@ namespace OpenSim.Region.Communications.Local /// /// User services used when OpenSim is running in standalone mode. /// - /// /// /// /// - /// Can be null if stats collection is not required. - public LocalUserServices(NetworkServersInfo serversInfo, uint defaultHomeLocX, uint defaultHomeLocY, - IInterServiceInventoryServices interServiceInventoryService) + public LocalUserServices( + uint defaultHomeLocX, uint defaultHomeLocY, IInterServiceInventoryServices interServiceInventoryService) : base(interServiceInventoryService) { - // m_serversInfo = serversInfo; - m_defaultHomeX = defaultHomeLocX; m_defaultHomeY = defaultHomeLocY; } -- cgit v1.1