aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-04-16 21:58:24 +0100
committerJustin Clark-Casey (justincc)2013-04-16 21:58:24 +0100
commitc5de9840b05514eb659696239593e51e636398b8 (patch)
treeb0f785416fb46b0a7f83cbb4c8ee9cea549102a1 /OpenSim/Region/Application
parentBulletSim: fixing problems with llMoveToTarget. Not all fixed yet. (diff)
downloadopensim-SC_OLD-c5de9840b05514eb659696239593e51e636398b8.zip
opensim-SC_OLD-c5de9840b05514eb659696239593e51e636398b8.tar.gz
opensim-SC_OLD-c5de9840b05514eb659696239593e51e636398b8.tar.bz2
opensim-SC_OLD-c5de9840b05514eb659696239593e51e636398b8.tar.xz
refactor: Remove IClientNetworkServer.NetworkStop() in favour of existing Stop().
This was an undocumented interface which I think was for long defunct region load balancing experiments. Also adds method doc for some IClientNetworkServer methods.
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index c555915..d86eefe 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -737,7 +737,7 @@ namespace OpenSim
737 737
738 if (foundClientServer) 738 if (foundClientServer)
739 { 739 {
740 m_clientServers[clientServerElement].NetworkStop(); 740 m_clientServers[clientServerElement].Stop();
741 m_clientServers.RemoveAt(clientServerElement); 741 m_clientServers.RemoveAt(clientServerElement);
742 } 742 }
743 } 743 }