diff options
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalUserServices.cs | 8 |
1 files changed, 2 insertions, 6 deletions
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 | |||
40 | /// <summary> | 40 | /// <summary> |
41 | /// User services used when OpenSim is running in standalone mode. | 41 | /// User services used when OpenSim is running in standalone mode. |
42 | /// </summary> | 42 | /// </summary> |
43 | /// <param name="serversInfo"></param> | ||
44 | /// <param name="defaultHomeLocX"></param> | 43 | /// <param name="defaultHomeLocX"></param> |
45 | /// <param name="defaultHomeLocY"></param> | 44 | /// <param name="defaultHomeLocY"></param> |
46 | /// <param name="inventoryService"></param> | 45 | /// <param name="inventoryService"></param> |
47 | /// <param name="statsCollector">Can be null if stats collection is not required.</param> | 46 | public LocalUserServices( |
48 | public LocalUserServices(NetworkServersInfo serversInfo, uint defaultHomeLocX, uint defaultHomeLocY, | 47 | uint defaultHomeLocX, uint defaultHomeLocY, IInterServiceInventoryServices interServiceInventoryService) |
49 | IInterServiceInventoryServices interServiceInventoryService) | ||
50 | : base(interServiceInventoryService) | 48 | : base(interServiceInventoryService) |
51 | { | 49 | { |
52 | // m_serversInfo = serversInfo; | ||
53 | |||
54 | m_defaultHomeX = defaultHomeLocX; | 50 | m_defaultHomeX = defaultHomeLocX; |
55 | m_defaultHomeY = defaultHomeLocY; | 51 | m_defaultHomeY = defaultHomeLocY; |
56 | } | 52 | } |