diff options
author | Jonathan Freedman | 2010-11-05 19:10:02 -0700 |
---|---|---|
committer | Jonathan Freedman | 2010-11-05 19:10:02 -0700 |
commit | 4f40374464899dad82abdb9c36ea863ceac0d83f (patch) | |
tree | a9b116ccca55fb07b8c79ab7f6fdfafc8466d740 /OpenSim/Tests | |
parent | Merge branch 'master' into mantis5110 (diff) | |
parent | Merge branch 'master' of /var/git/opensim/ (diff) | |
download | opensim-SC-4f40374464899dad82abdb9c36ea863ceac0d83f.zip opensim-SC-4f40374464899dad82abdb9c36ea863ceac0d83f.tar.gz opensim-SC-4f40374464899dad82abdb9c36ea863ceac0d83f.tar.bz2 opensim-SC-4f40374464899dad82abdb9c36ea863ceac0d83f.tar.xz |
Merge git://github.com/opensim/opensim into mantis5110
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r-- | OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs index 2e5020b..2ea36da 100644 --- a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs +++ b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs | |||
@@ -104,6 +104,10 @@ namespace OpenSim.Data.Null | |||
104 | return m_store.LoadRegionWindlightSettings(regionUUID); | 104 | return m_store.LoadRegionWindlightSettings(regionUUID); |
105 | } | 105 | } |
106 | 106 | ||
107 | public void RemoveRegionWindlightSettings(UUID regionID) | ||
108 | { | ||
109 | } | ||
110 | |||
107 | public void StoreRegionWindlightSettings(RegionLightShareData wl) | 111 | public void StoreRegionWindlightSettings(RegionLightShareData wl) |
108 | { | 112 | { |
109 | m_store.StoreRegionWindlightSettings(wl); | 113 | m_store.StoreRegionWindlightSettings(wl); |
@@ -146,6 +150,10 @@ namespace OpenSim.Data.Null | |||
146 | return new RegionLightShareData(); | 150 | return new RegionLightShareData(); |
147 | } | 151 | } |
148 | 152 | ||
153 | public void RemoveRegionWindlightSettings(UUID regionID) | ||
154 | { | ||
155 | } | ||
156 | |||
149 | public void StoreRegionWindlightSettings(RegionLightShareData wl) | 157 | public void StoreRegionWindlightSettings(RegionLightShareData wl) |
150 | { | 158 | { |
151 | //This connector doesn't support the windlight module yet | 159 | //This connector doesn't support the windlight module yet |
@@ -274,4 +282,4 @@ namespace OpenSim.Data.Null | |||
274 | { | 282 | { |
275 | } | 283 | } |
276 | } | 284 | } |
277 | } \ No newline at end of file | 285 | } |