diff options
Diffstat (limited to 'OpenSim/Region/Environment/Modules/ContentManagementSystem/FileSystemDatabase.cs')
-rw-r--r-- | OpenSim/Region/Environment/Modules/ContentManagementSystem/FileSystemDatabase.cs | 6 |
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 | } |