diff options
author | lbsa71 | 2007-09-24 01:31:00 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-24 01:31:00 +0000 |
commit | 47256cebda8f6519ab09fe66b64deb28f0702042 (patch) | |
tree | 8a1d43d087f5d69a981179cbad018d3bc74b6eb3 /OpenSim/Region/Communications/Local/CommunicationsLocal.cs | |
parent | * minor renames (diff) | |
download | opensim-SC_OLD-47256cebda8f6519ab09fe66b64deb28f0702042.zip opensim-SC_OLD-47256cebda8f6519ab09fe66b64deb28f0702042.tar.gz opensim-SC_OLD-47256cebda8f6519ab09fe66b64deb28f0702042.tar.bz2 opensim-SC_OLD-47256cebda8f6519ab09fe66b64deb28f0702042.tar.xz |
* Renamed methods on IUserData
Diffstat (limited to 'OpenSim/Region/Communications/Local/CommunicationsLocal.cs')
-rw-r--r-- | OpenSim/Region/Communications/Local/CommunicationsLocal.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs index 0105b9d..1f54310 100644 --- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs +++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs | |||
@@ -44,8 +44,14 @@ namespace OpenSim.Region.Communications.Local | |||
44 | public LocalUserServices UserServices; | 44 | public LocalUserServices UserServices; |
45 | public LocalLoginService LoginServices; | 45 | public LocalLoginService LoginServices; |
46 | public LocalInventoryService InvenServices; | 46 | public LocalInventoryService InvenServices; |
47 | // public CAPSService CapsServices; | 47 | |
48 | private readonly LocalSettings m_settings; | 48 | protected LocalSettings m_settings; |
49 | |||
50 | protected CommunicationsLocal(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache ) | ||
51 | : base(serversInfo, httpServer, assetCache) | ||
52 | { | ||
53 | |||
54 | } | ||
49 | 55 | ||
50 | public CommunicationsLocal(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache, LocalSettings settings) | 56 | public CommunicationsLocal(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache, LocalSettings settings) |
51 | : base(serversInfo, httpServer, assetCache) | 57 | : base(serversInfo, httpServer, assetCache) |