* minor: Eliminate unused paramter in LocalUserServices constructors

This commit is contained in:
Justin Clarke Casey
2008-11-28 15:40:44 +00:00
parent 0862627b34
commit 7b49c711e9
5 changed files with 9 additions and 13 deletions

View File

@@ -210,8 +210,8 @@ namespace OpenSim
inventoryService.AddPlugin(m_configSettings.StandaloneInventoryPlugin, m_configSettings.StandaloneInventorySource);
LocalUserServices userService =
new LocalUserServices(m_networkServersInfo, m_networkServersInfo.DefaultHomeLocX,
m_networkServersInfo.DefaultHomeLocY, inventoryService);
new LocalUserServices(
m_networkServersInfo.DefaultHomeLocX, m_networkServersInfo.DefaultHomeLocY, inventoryService);
userService.AddPlugin(m_configSettings.StandaloneUserPlugin, m_configSettings.StandaloneUserSource);
LocalBackEndServices backendService = new LocalBackEndServices();