aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-28 15:40:44 +0000
committerJustin Clarke Casey2008-11-28 15:40:44 +0000
commit7b49c711e93632276ee0f01a97ad67e9988f773a (patch)
tree085d349798fb3c4c8a42b2ae7d5bc0d48edefc41 /OpenSim/Region/Application
parent* refactor: move CreateUser into UserServiceAdmin (diff)
downloadopensim-SC_OLD-7b49c711e93632276ee0f01a97ad67e9988f773a.zip
opensim-SC_OLD-7b49c711e93632276ee0f01a97ad67e9988f773a.tar.gz
opensim-SC_OLD-7b49c711e93632276ee0f01a97ad67e9988f773a.tar.bz2
opensim-SC_OLD-7b49c711e93632276ee0f01a97ad67e9988f773a.tar.xz
* minor: Eliminate unused paramter in LocalUserServices constructors
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/HGOpenSimNode.cs4
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs4
2 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Application/HGOpenSimNode.cs b/OpenSim/Region/Application/HGOpenSimNode.cs
index 7605bae..8f6fd5e 100644
--- a/OpenSim/Region/Application/HGOpenSimNode.cs
+++ b/OpenSim/Region/Application/HGOpenSimNode.cs
@@ -82,8 +82,8 @@ namespace OpenSim
82 inventoryService.AddPlugin(m_configSettings.StandaloneInventoryPlugin, m_configSettings.StandaloneInventorySource); 82 inventoryService.AddPlugin(m_configSettings.StandaloneInventoryPlugin, m_configSettings.StandaloneInventorySource);
83 83
84 LocalUserServices userService = 84 LocalUserServices userService =
85 new LocalUserServices(m_networkServersInfo, m_networkServersInfo.DefaultHomeLocX, 85 new LocalUserServices(
86 m_networkServersInfo.DefaultHomeLocY, inventoryService); 86 m_networkServersInfo.DefaultHomeLocX, m_networkServersInfo.DefaultHomeLocY, inventoryService);
87 userService.AddPlugin(m_configSettings.StandaloneUserPlugin, m_configSettings.StandaloneUserSource); 87 userService.AddPlugin(m_configSettings.StandaloneUserPlugin, m_configSettings.StandaloneUserSource);
88 88
89 //LocalBackEndServices backendService = new LocalBackEndServices(); 89 //LocalBackEndServices backendService = new LocalBackEndServices();
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 7ccb3d4..f7ffa00 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -210,8 +210,8 @@ namespace OpenSim
210 inventoryService.AddPlugin(m_configSettings.StandaloneInventoryPlugin, m_configSettings.StandaloneInventorySource); 210 inventoryService.AddPlugin(m_configSettings.StandaloneInventoryPlugin, m_configSettings.StandaloneInventorySource);
211 211
212 LocalUserServices userService = 212 LocalUserServices userService =
213 new LocalUserServices(m_networkServersInfo, m_networkServersInfo.DefaultHomeLocX, 213 new LocalUserServices(
214 m_networkServersInfo.DefaultHomeLocY, inventoryService); 214 m_networkServersInfo.DefaultHomeLocX, m_networkServersInfo.DefaultHomeLocY, inventoryService);
215 userService.AddPlugin(m_configSettings.StandaloneUserPlugin, m_configSettings.StandaloneUserSource); 215 userService.AddPlugin(m_configSettings.StandaloneUserPlugin, m_configSettings.StandaloneUserSource);
216 216
217 LocalBackEndServices backendService = new LocalBackEndServices(); 217 LocalBackEndServices backendService = new LocalBackEndServices();