diff options
author | Justin Clark-Casey (justincc) | 2010-03-05 00:54:46 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-03-05 00:54:46 +0000 |
commit | e39fc95659a405a8500c9014d2ac31c5d85741d7 (patch) | |
tree | 19cf14d99216d77ce5855aa75fc58f2f004c09fa /OpenSim/Data/Null | |
parent | Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-e39fc95659a405a8500c9014d2ac31c5d85741d7.zip opensim-SC_OLD-e39fc95659a405a8500c9014d2ac31c5d85741d7.tar.gz opensim-SC_OLD-e39fc95659a405a8500c9014d2ac31c5d85741d7.tar.bz2 opensim-SC_OLD-e39fc95659a405a8500c9014d2ac31c5d85741d7.tar.xz |
Fix LocalPresenceServiceConnector test now that the hardcoded test data has been removed from Data.Null.NullPresenceData
Unfortunately, this meant publicly exposing the underlying service for the connector.
The other solution would be to create alternative initializers for services and connectors where objects could be given directly rather than loaded indirectly through config.
Unfortunately, this would require a lot of work in this case but might be the better way forward.
Diffstat (limited to 'OpenSim/Data/Null')
-rw-r--r-- | OpenSim/Data/Null/NullPresenceData.cs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/OpenSim/Data/Null/NullPresenceData.cs b/OpenSim/Data/Null/NullPresenceData.cs index 2ceb0c6..9fc4595 100644 --- a/OpenSim/Data/Null/NullPresenceData.cs +++ b/OpenSim/Data/Null/NullPresenceData.cs | |||
@@ -51,15 +51,6 @@ namespace OpenSim.Data.Null | |||
51 | Instance = this; | 51 | Instance = this; |
52 | 52 | ||
53 | //Console.WriteLine("[XXX] NullRegionData constructor"); | 53 | //Console.WriteLine("[XXX] NullRegionData constructor"); |
54 | // Let's stick in a test presence | ||
55 | /* | ||
56 | PresenceData p = new PresenceData(); | ||
57 | p.SessionID = UUID.Zero; | ||
58 | p.UserID = UUID.Zero.ToString(); | ||
59 | p.Data = new Dictionary<string, string>(); | ||
60 | p.Data["Online"] = true.ToString(); | ||
61 | m_presenceData.Add(UUID.Zero, p); | ||
62 | */ | ||
63 | } | 54 | } |
64 | } | 55 | } |
65 | 56 | ||