diff options
author | Justin Clark-Casey (justincc) | 2012-03-20 01:39:19 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-03-20 01:39:19 +0000 |
commit | 8c911ddaf051724af8684bf18559e8e33e0fcfb1 (patch) | |
tree | c1a3d9d2e0d071ed0aa9607512d4f920e5790b10 /OpenSim | |
parent | Fix small typo (diff) | |
download | opensim-SC_OLD-8c911ddaf051724af8684bf18559e8e33e0fcfb1.zip opensim-SC_OLD-8c911ddaf051724af8684bf18559e8e33e0fcfb1.tar.gz opensim-SC_OLD-8c911ddaf051724af8684bf18559e8e33e0fcfb1.tar.bz2 opensim-SC_OLD-8c911ddaf051724af8684bf18559e8e33e0fcfb1.tar.xz |
Remove some pointless catching/throwing in the scene loop.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 0706905..18a7ce8 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -1184,9 +1184,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1184 | m_lastUpdate = Util.EnvironmentTickCount(); | 1184 | m_lastUpdate = Util.EnvironmentTickCount(); |
1185 | m_firstHeartbeat = false; | 1185 | m_firstHeartbeat = false; |
1186 | } | 1186 | } |
1187 | catch (ThreadAbortException) | ||
1188 | { | ||
1189 | } | ||
1190 | finally | 1187 | finally |
1191 | { | 1188 | { |
1192 | Monitor.Pulse(m_heartbeatLock); | 1189 | Monitor.Pulse(m_heartbeatLock); |
@@ -1357,10 +1354,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1357 | } | 1354 | } |
1358 | } | 1355 | } |
1359 | } | 1356 | } |
1360 | catch (NotImplementedException) | ||
1361 | { | ||
1362 | throw; | ||
1363 | } | ||
1364 | catch (Exception e) | 1357 | catch (Exception e) |
1365 | { | 1358 | { |
1366 | m_log.ErrorFormat( | 1359 | m_log.ErrorFormat( |