From eb6cca4750e1fff2c1d8e0be93564b5f122571d9 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 19 Dec 2008 19:07:11 +0000 Subject: * refactor: Rename IRegionSerialiser and move into interfaces namespace --- .../Modules/ContentManagementSystem/FileSystemDatabase.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Environment/Modules/ContentManagementSystem') 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 private string m_repodir = null; private Dictionary m_scenes = new Dictionary(); - private Dictionary m_serialiser = new Dictionary(); + private Dictionary m_serialiser = new Dictionary(); #endregion Fields @@ -105,9 +105,7 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement { foreach (UUID region in m_scenes.Keys) { - m_serialiser.Add(region, - m_scenes[region].RequestModuleInterface() - ); + m_serialiser.Add(region, m_scenes[region].RequestModuleInterface()); } } } -- cgit v1.1