Changed all string references of "IRegionDataStore" to "ISimulationDataStore"
parent
109b517583
commit
e2544584ad
|
@ -73,7 +73,6 @@ namespace OpenSim.Data.Null
|
|||
{
|
||||
}
|
||||
|
||||
// see IRegionDatastore
|
||||
public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -79,7 +79,6 @@ namespace OpenSim.Data.SQLite
|
|||
**********************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// See IRegionDataStore
|
||||
/// <list type="bullet">
|
||||
/// <item>Initialises RegionData Interface</item>
|
||||
/// <item>Loads and initialises a new SQLite connection and maintains it.</item>
|
||||
|
@ -1951,7 +1950,6 @@ namespace OpenSim.Data.SQLite
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// see IRegionDatastore
|
||||
/// </summary>
|
||||
/// <param name="primID"></param>
|
||||
/// <param name="items"></param>
|
||||
|
|
|
@ -78,7 +78,6 @@ namespace OpenSim.Data.SQLiteLegacy
|
|||
**********************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// See IRegionDataStore
|
||||
/// <list type="bullet">
|
||||
/// <item>Initialises RegionData Interface</item>
|
||||
/// <item>Loads and initialises a new SQLite connection and maintains it.</item>
|
||||
|
@ -1888,7 +1887,6 @@ namespace OpenSim.Data.SQLiteLegacy
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// see IRegionDatastore
|
||||
/// </summary>
|
||||
/// <param name="primID"></param>
|
||||
/// <param name="items"></param>
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -114,7 +114,6 @@ namespace OpenSim.Data.Null
|
|||
}
|
||||
}
|
||||
|
||||
// see IRegionDatastore
|
||||
public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items)
|
||||
{
|
||||
m_primItems[primID] = items;
|
||||
|
|
Loading…
Reference in New Issue