* refactor: make shutdown a template method in the same manner as startup, for consistency's sake

This commit is contained in:
Justin Clarke Casey
2008-10-03 16:06:00 +00:00
parent 0487c3158b
commit 170cb935cd
5 changed files with 13 additions and 14 deletions

View File

@@ -734,7 +734,7 @@ namespace OpenSim
/// <summary>
/// Performs any last-minute sanity checking and shuts down the region server
/// </summary>
public override void Shutdown()
protected override void ShutdownSpecific()
{
if (proxyUrl.Length > 0)
{
@@ -755,8 +755,6 @@ namespace OpenSim
{
m_log.ErrorFormat("[SHUTDOWN]: Ignoring failure during shutdown - {0}", e);
}
base.Shutdown();
}
/// <summary>