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. --- .../Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs') diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs index 391ac84..b6c6c83 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs @@ -485,7 +485,7 @@ namespace OpenSim.DataStore.MonoSqliteStorage } } - public void StoreObject(SceneObjectGroup obj) + public void StoreObject(SceneObjectGroup obj, LLUUID regionUUID) { foreach (SceneObjectPart prim in obj.Children.Values) { @@ -498,7 +498,7 @@ namespace OpenSim.DataStore.MonoSqliteStorage // MainLog.Instance.Verbose("Dump of prims:", ds.GetXml()); } - public void RemoveObject(LLUUID obj) + public void RemoveObject(LLUUID obj, LLUUID regionUUID) { DataTable prims = ds.Tables["prims"]; DataTable shapes = ds.Tables["primshapes"]; @@ -520,7 +520,7 @@ namespace OpenSim.DataStore.MonoSqliteStorage shapeDa.Update(ds, "primshapes"); } - public List LoadObjects() + public List LoadObjects(LLUUID regionUUID) { Dictionary createdObjects = new Dictionary(); List retvals = new List(); -- cgit v1.1