diff options
author | Justin Clarke Casey | 2008-10-03 16:06:00 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-03 16:06:00 +0000 |
commit | 170cb935cdfcbd0f3a085f93f5b4aaa66083d888 (patch) | |
tree | 2c10c321ef0777b58517b13e1478a4997baf6aea /OpenSim/Region | |
parent | * minor: restore the standard startup logo text now I understand why things w... (diff) | |
download | opensim-SC_OLD-170cb935cdfcbd0f3a085f93f5b4aaa66083d888.zip opensim-SC_OLD-170cb935cdfcbd0f3a085f93f5b4aaa66083d888.tar.gz opensim-SC_OLD-170cb935cdfcbd0f3a085f93f5b4aaa66083d888.tar.bz2 opensim-SC_OLD-170cb935cdfcbd0f3a085f93f5b4aaa66083d888.tar.xz |
* refactor: make shutdown a template method in the same manner as startup, for consistency's sake
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index b802308..54dd51d 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -734,7 +734,7 @@ namespace OpenSim | |||
734 | /// <summary> | 734 | /// <summary> |
735 | /// Performs any last-minute sanity checking and shuts down the region server | 735 | /// Performs any last-minute sanity checking and shuts down the region server |
736 | /// </summary> | 736 | /// </summary> |
737 | public override void Shutdown() | 737 | protected override void ShutdownSpecific() |
738 | { | 738 | { |
739 | if (proxyUrl.Length > 0) | 739 | if (proxyUrl.Length > 0) |
740 | { | 740 | { |
@@ -755,8 +755,6 @@ namespace OpenSim | |||
755 | { | 755 | { |
756 | m_log.ErrorFormat("[SHUTDOWN]: Ignoring failure during shutdown - {0}", e); | 756 | m_log.ErrorFormat("[SHUTDOWN]: Ignoring failure during shutdown - {0}", e); |
757 | } | 757 | } |
758 | |||
759 | base.Shutdown(); | ||
760 | } | 758 | } |
761 | 759 | ||
762 | /// <summary> | 760 | /// <summary> |