diff options
author | MW | 2009-02-26 20:11:13 +0000 |
---|---|---|
committer | MW | 2009-02-26 20:11:13 +0000 |
commit | 18382ebfd92ad43fa8afb54b55aa7be472166409 (patch) | |
tree | bc0895f05fea078fbcc8d412dbb5ca9ce1a40d49 /OpenSim | |
parent | Added IRegistryCore and RegistryCore to OpenSim.Framework. (diff) | |
download | opensim-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 'OpenSim')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 4 |
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 | } |