diff options
The regionUUID is now being passed to the datastore calls.
Diffstat (limited to 'OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/NullDataStore.cs')
-rw-r--r-- | OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/NullDataStore.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/NullDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/NullDataStore.cs index 643508e..176a534 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/NullDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.NullStorage/NullDataStore.cs | |||
@@ -18,17 +18,17 @@ namespace OpenSim.DataStore.NullStorage | |||
18 | return; | 18 | return; |
19 | } | 19 | } |
20 | 20 | ||
21 | public void StoreObject(SceneObjectGroup obj) | 21 | public void StoreObject(SceneObjectGroup obj, LLUUID regionUUID) |
22 | { | 22 | { |
23 | 23 | ||
24 | } | 24 | } |
25 | 25 | ||
26 | public void RemoveObject(LLUUID obj) | 26 | public void RemoveObject(LLUUID obj, LLUUID regionUUID) |
27 | { | 27 | { |
28 | 28 | ||
29 | } | 29 | } |
30 | 30 | ||
31 | public List<SceneObjectGroup> LoadObjects() | 31 | public List<SceneObjectGroup> LoadObjects(LLUUID regionUUID) |
32 | { | 32 | { |
33 | return new List<SceneObjectGroup>(); | 33 | return new List<SceneObjectGroup>(); |
34 | } | 34 | } |