* minor: eliminate unused config field

0.6.0-stable
Justin Clarke Casey 2008-11-03 18:36:04 +00:00
parent 8c71954e08
commit a88e850ccf
1 changed files with 4 additions and 3 deletions

View File

@ -110,14 +110,15 @@ namespace OpenSim
protected List<IApplicationPlugin> m_plugins = new List<IApplicationPlugin>(); protected List<IApplicationPlugin> m_plugins = new List<IApplicationPlugin>();
protected IConfigSource m_finalConfig = null; /// <value>
protected OpenSimConfigSource m_config; /// The config information passed into the OpenSim region server.
/// </value>
public OpenSimConfigSource ConfigSource public OpenSimConfigSource ConfigSource
{ {
get { return m_config; } get { return m_config; }
set { m_config = value; } set { m_config = value; }
} }
protected OpenSimConfigSource m_config;
public List<IClientNetworkServer> ClientServers public List<IClientNetworkServer> ClientServers
{ {