aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
authorMW2009-02-26 20:11:13 +0000
committerMW2009-02-26 20:11:13 +0000
commit18382ebfd92ad43fa8afb54b55aa7be472166409 (patch)
treebc0895f05fea078fbcc8d412dbb5ca9ce1a40d49 /OpenSim/Region/Application/OpenSimBase.cs
parentAdded IRegistryCore and RegistryCore to OpenSim.Framework. (diff)
downloadopensim-SC_OLD-18382ebfd92ad43fa8afb54b55aa7be472166409.zip
opensim-SC_OLD-18382ebfd92ad43fa8afb54b55aa7be472166409.tar.gz
opensim-SC_OLD-18382ebfd92ad43fa8afb54b55aa7be472166409.tar.bz2
opensim-SC_OLD-18382ebfd92ad43fa8afb54b55aa7be472166409.tar.xz
Changed the type of the ApplicationRegistry member from RegistryCore to IRegistryCore
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 2b74aa3..6045dc0 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -122,9 +122,9 @@ namespace OpenSim
122 } 122 }
123 protected ModuleLoader m_moduleLoader; 123 protected ModuleLoader m_moduleLoader;
124 124
125 protected RegistryCore m_applicationRegistry = new RegistryCore(); 125 protected IRegistryCore m_applicationRegistry = new RegistryCore();
126 126
127 public RegistryCore ApplicationRegistry 127 public IRegistryCore ApplicationRegistry
128 { 128 {
129 get { return m_applicationRegistry; } 129 get { return m_applicationRegistry; }
130 } 130 }