From 31a81e17be6e59111deb484650fbb1cfa1eb6c5c Mon Sep 17 00:00:00 2001 From: MW Date: Mon, 20 Aug 2007 15:49:06 +0000 Subject: The regionUUID is now being passed to the datastore calls. --- OpenSim/Region/Storage/OpenSim.DataStore.DB4o/DB4oDataStore.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Storage/OpenSim.DataStore.DB4o') diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.DB4o/DB4oDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.DB4o/DB4oDataStore.cs index 9c5e4bc..73eb635 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.DB4o/DB4oDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.DB4o/DB4oDataStore.cs @@ -43,12 +43,12 @@ namespace OpenSim.DataStore.DB4oStorage return; } - public void StoreObject(SceneObjectGroup obj) + public void StoreObject(SceneObjectGroup obj, LLUUID regionUUID) { db.Set(obj); } - public void RemoveObject(LLUUID obj) + public void RemoveObject(LLUUID obj, LLUUID regionUUID) { IObjectSet result = db.Query(new SceneObjectQuery(obj)); if (result.Count > 0) @@ -58,7 +58,7 @@ namespace OpenSim.DataStore.DB4oStorage } } - public List LoadObjects() + public List LoadObjects(LLUUID regionUUID) { IObjectSet result = db.Get(typeof(SceneObjectGroup)); List retvals = new List(); -- cgit v1.1