aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorJohn Hurliman2010-09-11 22:02:34 -0700
committerJohn Hurliman2010-09-11 22:02:34 -0700
commite2544584ad57a30def4f6b13eeaafe90eb81fe9e (patch)
treebd6ae66c21194b8f12bcc0dbe5babcdf10ab4f6b /OpenSim/Region/Framework
parentFixed the naming mess around data connectors for simulation data (diff)
downloadopensim-SC_OLD-e2544584ad57a30def4f6b13eeaafe90eb81fe9e.zip
opensim-SC_OLD-e2544584ad57a30def4f6b13eeaafe90eb81fe9e.tar.gz
opensim-SC_OLD-e2544584ad57a30def4f6b13eeaafe90eb81fe9e.tar.bz2
opensim-SC_OLD-e2544584ad57a30def4f6b13eeaafe90eb81fe9e.tar.xz
Changed all string references of "IRegionDataStore" to "ISimulationDataStore"
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/StorageManager.cs4
1 files changed, 2 insertions, 2 deletions
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
64 { 64 {
65 if (pluginType.IsPublic) 65 if (pluginType.IsPublic)
66 { 66 {
67 Type typeInterface = pluginType.GetInterface("IRegionDataStore", true); 67 Type typeInterface = pluginType.GetInterface("ISimulationDataStore", true);
68 68
69 if (typeInterface != null) 69 if (typeInterface != null)
70 { 70 {
@@ -74,7 +74,7 @@ namespace OpenSim.Region.Framework
74 74
75 m_dataStore = plug; 75 m_dataStore = plug;
76 76
77 m_log.Info("[DATASTORE]: Added IRegionDataStore Interface"); 77 m_log.Info("[DATASTORE]: Added ISimulationDataStore Interface");
78 } 78 }
79 79
80 typeInterface = pluginType.GetInterface("IEstateDataStore", true); 80 typeInterface = pluginType.GetInterface("IEstateDataStore", true);