From e2544584ad57a30def4f6b13eeaafe90eb81fe9e Mon Sep 17 00:00:00 2001 From: John Hurliman Date: Sat, 11 Sep 2010 22:02:34 -0700 Subject: Changed all string references of "IRegionDataStore" to "ISimulationDataStore" --- OpenSim/Data/Null/NullSimulationData.cs | 1 - OpenSim/Data/SQLite/SQLiteSimulationData.cs | 2 -- OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs | 2 -- OpenSim/Region/Framework/StorageManager.cs | 4 ++-- OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs | 1 - 5 files changed, 2 insertions(+), 8 deletions(-) diff --git a/OpenSim/Data/Null/NullSimulationData.cs b/OpenSim/Data/Null/NullSimulationData.cs index 9c7da8e..34d3a4e 100644 --- a/OpenSim/Data/Null/NullSimulationData.cs +++ b/OpenSim/Data/Null/NullSimulationData.cs @@ -73,7 +73,6 @@ namespace OpenSim.Data.Null { } - // see IRegionDatastore public void StorePrimInventory(UUID primID, ICollection items) { } diff --git a/OpenSim/Data/SQLite/SQLiteSimulationData.cs b/OpenSim/Data/SQLite/SQLiteSimulationData.cs index 55c27b2..1820f78 100644 --- a/OpenSim/Data/SQLite/SQLiteSimulationData.cs +++ b/OpenSim/Data/SQLite/SQLiteSimulationData.cs @@ -79,7 +79,6 @@ namespace OpenSim.Data.SQLite **********************************************************************/ /// - /// See IRegionDataStore /// /// Initialises RegionData Interface /// Loads and initialises a new SQLite connection and maintains it. @@ -1951,7 +1950,6 @@ namespace OpenSim.Data.SQLite } /// - /// see IRegionDatastore /// /// /// diff --git a/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs b/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs index 878117e..e9c6aa5 100644 --- a/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs +++ b/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs @@ -78,7 +78,6 @@ namespace OpenSim.Data.SQLiteLegacy **********************************************************************/ /// - /// See IRegionDataStore /// /// Initialises RegionData Interface /// Loads and initialises a new SQLite connection and maintains it. @@ -1888,7 +1887,6 @@ namespace OpenSim.Data.SQLiteLegacy } /// - /// see IRegionDatastore /// /// /// diff --git a/OpenSim/Region/Framework/StorageManager.cs b/OpenSim/Region/Framework/StorageManager.cs index 06caa18..47db2b3 100644 --- a/OpenSim/Region/Framework/StorageManager.cs +++ b/OpenSim/Region/Framework/StorageManager.cs @@ -64,7 +64,7 @@ namespace OpenSim.Region.Framework { if (pluginType.IsPublic) { - Type typeInterface = pluginType.GetInterface("IRegionDataStore", true); + Type typeInterface = pluginType.GetInterface("ISimulationDataStore", true); if (typeInterface != null) { @@ -74,7 +74,7 @@ namespace OpenSim.Region.Framework m_dataStore = plug; - m_log.Info("[DATASTORE]: Added IRegionDataStore Interface"); + m_log.Info("[DATASTORE]: Added ISimulationDataStore Interface"); } typeInterface = pluginType.GetInterface("IEstateDataStore", true); diff --git a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs index e95d26a..315d405 100644 --- a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs +++ b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs @@ -114,7 +114,6 @@ namespace OpenSim.Data.Null } } - // see IRegionDatastore public void StorePrimInventory(UUID primID, ICollection items) { m_primItems[primID] = items; -- cgit v1.1