From 548bbc97e5d6e2ffaa3068aa0847eaa6c401345d Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 6 Feb 2008 20:34:18 +0000 Subject: * Chasing down memory leak where memory used by a client is not returned on client logout * This code may or may not be on the right track, but I want to save my work so far. --- OpenSim/Framework/ClientManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/ClientManager.cs b/OpenSim/Framework/ClientManager.cs index 8422c17..62ff203 100644 --- a/OpenSim/Framework/ClientManager.cs +++ b/OpenSim/Framework/ClientManager.cs @@ -68,7 +68,7 @@ namespace OpenSim.Framework m_clients = new Dictionary(); } - private void Remove(uint id) + public void Remove(uint id) { m_clients.Remove(id); } -- cgit v1.1