aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-03 18:36:04 +0000
committerJustin Clarke Casey2008-11-03 18:36:04 +0000
commita88e850ccf6e3943aac3ac857fcb537808eebc79 (patch)
tree91831caa93b104d416cde32adab3c934ee1aacbd /OpenSim/Region/Application
parent* Use nini to pass config information to the client stack, rather than the Cl... (diff)
downloadopensim-SC_OLD-a88e850ccf6e3943aac3ac857fcb537808eebc79.zip
opensim-SC_OLD-a88e850ccf6e3943aac3ac857fcb537808eebc79.tar.gz
opensim-SC_OLD-a88e850ccf6e3943aac3ac857fcb537808eebc79.tar.bz2
opensim-SC_OLD-a88e850ccf6e3943aac3ac857fcb537808eebc79.tar.xz
* minor: eliminate unused config field
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index ebcea28..200c7bf 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -110,14 +110,15 @@ namespace OpenSim
110 110
111 protected List<IApplicationPlugin> m_plugins = new List<IApplicationPlugin>(); 111 protected List<IApplicationPlugin> m_plugins = new List<IApplicationPlugin>();
112 112
113 protected IConfigSource m_finalConfig = null; 113 /// <value>
114 protected OpenSimConfigSource m_config; 114 /// The config information passed into the OpenSim region server.
115 115 /// </value>
116 public OpenSimConfigSource ConfigSource 116 public OpenSimConfigSource ConfigSource
117 { 117 {
118 get { return m_config; } 118 get { return m_config; }
119 set { m_config = value; } 119 set { m_config = value; }
120 } 120 }
121 protected OpenSimConfigSource m_config;
121 122
122 public List<IClientNetworkServer> ClientServers 123 public List<IClientNetworkServer> ClientServers
123 { 124 {