diff options
author | Justin Clarke Casey | 2008-09-15 18:23:36 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-15 18:23:36 +0000 |
commit | c2ee26399947be5e3c23ac3abc53f2ba907ff10f (patch) | |
tree | 563fa2cb85453ae6c3e65ab08ec1f6b307b9c5ff /OpenSim/Region/Communications/Local/CommunicationsLocal.cs | |
parent | * Complete refactoring accidentally left unfinished so that all server help r... (diff) | |
download | opensim-SC_OLD-c2ee26399947be5e3c23ac3abc53f2ba907ff10f.zip opensim-SC_OLD-c2ee26399947be5e3c23ac3abc53f2ba907ff10f.tar.gz opensim-SC_OLD-c2ee26399947be5e3c23ac3abc53f2ba907ff10f.tar.bz2 opensim-SC_OLD-c2ee26399947be5e3c23ac3abc53f2ba907ff10f.tar.xz |
* refactor: Break out IUserServiceAdmin out of IUserService since admin methods don't need to be implemented on Grid hosted region servers
Diffstat (limited to 'OpenSim/Region/Communications/Local/CommunicationsLocal.cs')
-rw-r--r-- | OpenSim/Region/Communications/Local/CommunicationsLocal.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs index 6793889..c79979c 100644 --- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs +++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs | |||
@@ -39,6 +39,7 @@ namespace OpenSim.Region.Communications.Local | |||
39 | BaseHttpServer httpServer, | 39 | BaseHttpServer httpServer, |
40 | AssetCache assetCache, | 40 | AssetCache assetCache, |
41 | IUserService userService, | 41 | IUserService userService, |
42 | IUserServiceAdmin userServiceAdmin, | ||
42 | LocalInventoryService inventoryService, | 43 | LocalInventoryService inventoryService, |
43 | IInterRegionCommunications interRegionService, | 44 | IInterRegionCommunications interRegionService, |
44 | IGridServices gridService, bool dumpAssetsToFile) | 45 | IGridServices gridService, bool dumpAssetsToFile) |
@@ -48,6 +49,7 @@ namespace OpenSim.Region.Communications.Local | |||
48 | m_defaultInventoryHost = inventoryService.Host; | 49 | m_defaultInventoryHost = inventoryService.Host; |
49 | m_interServiceInventoryService = inventoryService; | 50 | m_interServiceInventoryService = inventoryService; |
50 | m_userService = userService; | 51 | m_userService = userService; |
52 | m_userServiceAdmin = userServiceAdmin; | ||
51 | m_avatarService = (IAvatarService)userService; | 53 | m_avatarService = (IAvatarService)userService; |
52 | m_gridService = gridService; | 54 | m_gridService = gridService; |
53 | m_interRegion = interRegionService; | 55 | m_interRegion = interRegionService; |