aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/ContentManagementSystem
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-19 19:07:11 +0000
committerJustin Clarke Casey2008-12-19 19:07:11 +0000
commiteb6cca4750e1fff2c1d8e0be93564b5f122571d9 (patch)
tree8c57e209eb1470f27e0b5aef0bbf03ff08686e99 /OpenSim/Region/Environment/Modules/ContentManagementSystem
parentReset Expire date for tempOnRez objects on rez. Fixes Mantis#2848 (diff)
downloadopensim-SC_OLD-eb6cca4750e1fff2c1d8e0be93564b5f122571d9.zip
opensim-SC_OLD-eb6cca4750e1fff2c1d8e0be93564b5f122571d9.tar.gz
opensim-SC_OLD-eb6cca4750e1fff2c1d8e0be93564b5f122571d9.tar.bz2
opensim-SC_OLD-eb6cca4750e1fff2c1d8e0be93564b5f122571d9.tar.xz
* refactor: Rename IRegionSerialiser and move into interfaces namespace
Diffstat (limited to 'OpenSim/Region/Environment/Modules/ContentManagementSystem')
-rw-r--r--OpenSim/Region/Environment/Modules/ContentManagementSystem/FileSystemDatabase.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Modules/ContentManagementSystem/FileSystemDatabase.cs b/OpenSim/Region/Environment/Modules/ContentManagementSystem/FileSystemDatabase.cs
index 607f6a9..3a8e374 100644
--- a/OpenSim/Region/Environment/Modules/ContentManagementSystem/FileSystemDatabase.cs
+++ b/OpenSim/Region/Environment/Modules/ContentManagementSystem/FileSystemDatabase.cs
@@ -69,7 +69,7 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement
69 69
70 private string m_repodir = null; 70 private string m_repodir = null;
71 private Dictionary<UUID, Scene> m_scenes = new Dictionary<UUID, Scene>(); 71 private Dictionary<UUID, Scene> m_scenes = new Dictionary<UUID, Scene>();
72 private Dictionary<UUID, IRegionSerialiser> m_serialiser = new Dictionary<UUID, IRegionSerialiser>(); 72 private Dictionary<UUID, IRegionSerialiserModule> m_serialiser = new Dictionary<UUID, IRegionSerialiserModule>();
73 73
74 #endregion Fields 74 #endregion Fields
75 75
@@ -105,9 +105,7 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement
105 { 105 {
106 foreach (UUID region in m_scenes.Keys) 106 foreach (UUID region in m_scenes.Keys)
107 { 107 {
108 m_serialiser.Add(region, 108 m_serialiser.Add(region, m_scenes[region].RequestModuleInterface<IRegionSerialiserModule>());
109 m_scenes[region].RequestModuleInterface<IRegionSerialiser>()
110 );
111 } 109 }
112 } 110 }
113 } 111 }