Changed all string references of "IRegionDataStore" to "ISimulationDataStore"

This commit is contained in:
John Hurliman
2010-09-11 22:02:34 -07:00
parent 109b517583
commit e2544584ad
5 changed files with 2 additions and 8 deletions

View File

@@ -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);