aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/StorageManager.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/StorageManager.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Framework/StorageManager.cs b/OpenSim/Region/Framework/StorageManager.cs
index 9375b4a..06caa18 100644
--- a/OpenSim/Region/Framework/StorageManager.cs
+++ b/OpenSim/Region/Framework/StorageManager.cs
@@ -36,9 +36,9 @@ namespace OpenSim.Region.Framework
36 { 36 {
37 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 37 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
38 38
39 protected IRegionDataStore m_dataStore; 39 protected ISimulationDataStore m_dataStore;
40 40
41 public IRegionDataStore DataStore 41 public ISimulationDataStore DataStore
42 { 42 {
43 get { return m_dataStore; } 43 get { return m_dataStore; }
44 } 44 }
@@ -50,7 +50,7 @@ namespace OpenSim.Region.Framework
50 get { return m_estateDataStore; } 50 get { return m_estateDataStore; }
51 } 51 }
52 52
53 public StorageManager(IRegionDataStore storage) 53 public StorageManager(ISimulationDataStore storage)
54 { 54 {
55 m_dataStore = storage; 55 m_dataStore = storage;
56 } 56 }
@@ -68,8 +68,8 @@ namespace OpenSim.Region.Framework
68 68
69 if (typeInterface != null) 69 if (typeInterface != null)
70 { 70 {
71 IRegionDataStore plug = 71 ISimulationDataStore plug =
72 (IRegionDataStore) Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); 72 (ISimulationDataStore)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString()));
73 plug.Initialise(connectionstring); 73 plug.Initialise(connectionstring);
74 74
75 m_dataStore = plug; 75 m_dataStore = plug;