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/ClientStack/RegionApplicationBase.cs | |
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 '')
-rw-r--r-- | OpenSim/Region/ClientStack/RegionApplicationBase.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index 4c6d51f..cee7ffa 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs | |||
@@ -71,10 +71,8 @@ namespace OpenSim.Region.ClientStack | |||
71 | get { return m_sceneManager; } | 71 | get { return m_sceneManager; } |
72 | } | 72 | } |
73 | 73 | ||
74 | public override void Startup() | 74 | protected override void StartupSpecific() |
75 | { | 75 | { |
76 | base.Startup(); | ||
77 | |||
78 | m_storageManager = CreateStorageManager(m_storageConnectionString, m_estateConnectionString); | 76 | m_storageManager = CreateStorageManager(m_storageConnectionString, m_estateConnectionString); |
79 | 77 | ||
80 | m_clientStackManager = CreateClientStackManager(); | 78 | m_clientStackManager = CreateClientStackManager(); |