diff options
author | Jeff Ames | 2009-08-31 14:16:16 +0900 |
---|---|---|
committer | Jeff Ames | 2009-08-31 14:16:16 +0900 |
commit | bbef5c344eb317aced3139d1353ae9a8826d4e12 (patch) | |
tree | 9affb43629fa9dd94d221fc125220c6dd226da22 /OpenSim/Region | |
parent | Recreate the shell of the AuthenticationService to squelch Windows build (diff) | |
download | opensim-SC_OLD-bbef5c344eb317aced3139d1353ae9a8826d4e12.zip opensim-SC_OLD-bbef5c344eb317aced3139d1353ae9a8826d4e12.tar.gz opensim-SC_OLD-bbef5c344eb317aced3139d1353ae9a8826d4e12.tar.bz2 opensim-SC_OLD-bbef5c344eb317aced3139d1353ae9a8826d4e12.tar.xz |
Remove typo version of ReplaceableInterface property from RegionCombinerModule.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IRegionModuleBase.cs | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs b/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs index 79c9839..a6e3859 100644 --- a/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs +++ b/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs | |||
@@ -20,8 +20,6 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
20 | get { return null; } | 20 | get { return null; } |
21 | } | 21 | } |
22 | 22 | ||
23 | public Type ReplacableInterface { get { return null; } } | ||
24 | |||
25 | private Dictionary<UUID, RegionConnections> m_regions = new Dictionary<UUID, RegionConnections>(); | 23 | private Dictionary<UUID, RegionConnections> m_regions = new Dictionary<UUID, RegionConnections>(); |
26 | private bool enabledYN = false; | 24 | private bool enabledYN = false; |
27 | public void Initialise(IConfigSource source) | 25 | public void Initialise(IConfigSource source) |
diff --git a/OpenSim/Region/Framework/Interfaces/IRegionModuleBase.cs b/OpenSim/Region/Framework/Interfaces/IRegionModuleBase.cs index ff606b1..9b1e4ca 100644 --- a/OpenSim/Region/Framework/Interfaces/IRegionModuleBase.cs +++ b/OpenSim/Region/Framework/Interfaces/IRegionModuleBase.cs | |||
@@ -47,7 +47,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
47 | /// has registered the interface by then, this module will be | 47 | /// has registered the interface by then, this module will be |
48 | /// activated, else it will remain inactive, letting the other module | 48 | /// activated, else it will remain inactive, letting the other module |
49 | /// take over. This should return non-null ONLY in modules that are | 49 | /// take over. This should return non-null ONLY in modules that are |
50 | /// intended to be easily replacable, e.g. stub implementations | 50 | /// intended to be easily replaceable, e.g. stub implementations |
51 | /// that the developer expects to be replaced by third party provided | 51 | /// that the developer expects to be replaced by third party provided |
52 | /// modules. | 52 | /// modules. |
53 | /// </summary> | 53 | /// </summary> |