diff options
author | Justin Clarke Casey | 2009-04-22 20:09:45 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-04-22 20:09:45 +0000 |
commit | 4254733e8abd6184b2b981158882bedc7c48b26a (patch) | |
tree | f4308d29a8339bab060aa5a86bf83727c42b70a8 /OpenSim/Region/Communications/Hypergrid | |
parent | * minor: remove some compiler warnings (diff) | |
download | opensim-SC_OLD-4254733e8abd6184b2b981158882bedc7c48b26a.zip opensim-SC_OLD-4254733e8abd6184b2b981158882bedc7c48b26a.tar.gz opensim-SC_OLD-4254733e8abd6184b2b981158882bedc7c48b26a.tar.bz2 opensim-SC_OLD-4254733e8abd6184b2b981158882bedc7c48b26a.tar.xz |
* Resolve http://opensimulator.org/mantis/view.php?id=3509 by passing up the comms manager rather than null
Diffstat (limited to 'OpenSim/Region/Communications/Hypergrid')
-rw-r--r-- | OpenSim/Region/Communications/Hypergrid/HGUserServices.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs b/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs index 357d8a6..25c6341 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs | |||
@@ -52,14 +52,14 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
52 | private LocalUserServices m_localUserServices; | 52 | private LocalUserServices m_localUserServices; |
53 | 53 | ||
54 | // Constructor called when running in grid mode | 54 | // Constructor called when running in grid mode |
55 | public HGUserServices(CommunicationsManager parent) | 55 | public HGUserServices(CommunicationsManager commsManager) |
56 | : base(parent) | 56 | : base(commsManager) |
57 | { | 57 | { |
58 | } | 58 | } |
59 | 59 | ||
60 | // Constructor called when running in standalone | 60 | // Constructor called when running in standalone |
61 | public HGUserServices(LocalUserServices local) | 61 | public HGUserServices(CommunicationsManager commsManager, LocalUserServices local) |
62 | : base(null) | 62 | : base(commsManager) |
63 | { | 63 | { |
64 | m_localUserServices = local; | 64 | m_localUserServices = local; |
65 | } | 65 | } |