diff options
author | Justin Clarke Casey | 2008-10-03 15:11:29 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-03 15:11:29 +0000 |
commit | 70124a3213d013098507b08ed7f9301da6845882 (patch) | |
tree | 6eb458084e0496be30be166a6da91f50cfb7b1d6 /OpenSim/Region/Application | |
parent | This changeset changes the way chat from client is routed: (diff) | |
download | opensim-SC_OLD-70124a3213d013098507b08ed7f9301da6845882.zip opensim-SC_OLD-70124a3213d013098507b08ed7f9301da6845882.tar.gz opensim-SC_OLD-70124a3213d013098507b08ed7f9301da6845882.tar.bz2 opensim-SC_OLD-70124a3213d013098507b08ed7f9301da6845882.tar.xz |
* refactor: make startup a template method
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 445fba0..b802308 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -363,10 +363,10 @@ namespace OpenSim | |||
363 | /// <summary> | 363 | /// <summary> |
364 | /// Performs initialisation of the scene, such as loading configuration from disk. | 364 | /// Performs initialisation of the scene, such as loading configuration from disk. |
365 | /// </summary> | 365 | /// </summary> |
366 | public override void Startup() | 366 | protected override void StartupSpecific() |
367 | { | 367 | { |
368 | base.Startup(); | 368 | base.StartupSpecific(); |
369 | 369 | ||
370 | m_stats = StatsManager.StartCollectingSimExtraStats(); | 370 | m_stats = StatsManager.StartCollectingSimExtraStats(); |
371 | 371 | ||
372 | LibraryRootFolder libraryRootFolder = new LibraryRootFolder(); | 372 | LibraryRootFolder libraryRootFolder = new LibraryRootFolder(); |