aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-03 15:11:29 +0000
committerJustin Clarke Casey2008-10-03 15:11:29 +0000
commit70124a3213d013098507b08ed7f9301da6845882 (patch)
tree6eb458084e0496be30be166a6da91f50cfb7b1d6 /OpenSim/Region/Application/OpenSimBase.cs
parentThis changeset changes the way chat from client is routed: (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs6
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();