diff options
author | MW | 2008-11-10 15:17:50 +0000 |
---|---|---|
committer | MW | 2008-11-10 15:17:50 +0000 |
commit | d01cd9c84fdfeaa12050729f084e43cb988474a0 (patch) | |
tree | 3f29bdb221c524e2be5d1139a66ddf1fac0fcc41 /OpenSim/Region/Application | |
parent | From: Christopher Yeoh <cyeoh@au1.ibm.com> (diff) | |
download | opensim-SC_OLD-d01cd9c84fdfeaa12050729f084e43cb988474a0.zip opensim-SC_OLD-d01cd9c84fdfeaa12050729f084e43cb988474a0.tar.gz opensim-SC_OLD-d01cd9c84fdfeaa12050729f084e43cb988474a0.tar.bz2 opensim-SC_OLD-d01cd9c84fdfeaa12050729f084e43cb988474a0.tar.xz |
another small bit of startup refactoring
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index ebe4028..fc531f5 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -139,6 +139,11 @@ namespace OpenSim | |||
139 | /// <param name="configSource"></param> | 139 | /// <param name="configSource"></param> |
140 | public OpenSimBase(IConfigSource configSource) : base() | 140 | public OpenSimBase(IConfigSource configSource) : base() |
141 | { | 141 | { |
142 | LoadConfigSettings(configSource); | ||
143 | } | ||
144 | |||
145 | protected virtual void LoadConfigSettings(IConfigSource configSource) | ||
146 | { | ||
142 | m_configLoader = new ConfigurationLoader(); | 147 | m_configLoader = new ConfigurationLoader(); |
143 | m_config = m_configLoader.LoadConfigSettings(configSource, out m_configSettings, out m_networkServersInfo); | 148 | m_config = m_configLoader.LoadConfigSettings(configSource, out m_configSettings, out m_networkServersInfo); |
144 | ReadExtraConfigSettings(); | 149 | ReadExtraConfigSettings(); |